数据结构---顺序储存结构的C语言程序 #include#include#define LIST_INIT_SIZE 100 //线性表存储空间的初始化分配量#define LISTINCENREMENT 10 //线性表存储空间分配增量(当存储空间不够时要用到)typedef int ElemType;struct List{ElemType *elem;int length;int lists Other 2024-06-17 44 点赞 0 评论 66 浏览