数据结结构学习 -- 线性表

1. 线性表的顺序表示指用一组地址连续的存储单元依次存取线性表的数据 线性表动态分配顺序存储结构 #define LIST_INIT_SIZE 100 #define LIST_INCREMENT 10 typedef struct {   ElemType* elem;   int length;   int listsize; }SqList;   2。 线性表的链式存取结构的特点是用一组任意
相关文章
相关标签/搜索