爱听歌发夹

文章
5
资源
0
加入时间
2年10月17天

数据结构---顺序储存结构的C语言程序

#include#include#define LIST_INIT_SIZE 100  //线性表存储空间的初始化分配量#define LISTINCENREMENT 10  //线性表存储空间分配增量(当存储空间不够时要用到)typedef int ElemType;struct List{ElemType *elem;int length;int lists