摘要: 1.线性链表的顺序存储构建(SeqList.h)顺序表构建 1 //顺序表构建 2 #include 3 #define MaxSize 100 4 typedef int DataType; 5 6 typedef struct 7 { 8 DataType list[MaxSize]... 阅读全文
posted @ 2016-01-10 17:44 鬼狐 阅读(810) 评论(0) 推荐(0) 编辑