- 博客(1)
- 资源 (6)
- 收藏
- 关注
转载 数据结构---顺序储存结构的C语言程序
#include #include #define LIST_INIT_SIZE 100 //线性表存储空间的初始化分配量 #define LISTINCENREMENT 10 //线性表存储空间分配增量(当存储空间不够时要用到) typedef int ElemType; struct List { ElemType *elem; int length; int lists
2018-01-23 15:43:10
403
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅