数据结构---顺序储存结构的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 132 点赞 2 评论 200 浏览