数据类型与数据结构

C语言支持的数据类型

原子数据类型:int (char, short, int, long, longlong), char, float (float, double)

复合数据类型:array (m x n, ...), enumerate, union, structure pointer

C语言不支持的数据类型:bool,string

lisp里所有的东西都可以抽象成list

数据结构有对应的操作

数据结构:结构本身,操作(接口),操作的实现算法=>算法的基础知识

数据类型:结构本身,操作,操作的实现=>机器指令及其实现

数据结构上进行查找,增加,删除操作

对一个堆,允许操作 构建堆 删除节点 插入节点 堆排序

数据分析

向量:vector

序列:sequence

时间序列:time series

时空:spatio-temporal

猜你喜欢

转载自www.cnblogs.com/wwqdata/p/12921704.html