04 2016 档案

 
线性表顺序存储结构实现(线性表-数据结构作业)
摘要:1 #include 2 #define MAXSIZE 20 3 4 typedef int ElemType; 5 typedef struct 6 { 7 ElemType data[MAXSIZE]; 8 int length; 9 }SqList; 10 11 void InitList(SqList *L) 12 { 1... 阅读全文
posted @ 2016-04-14 11:17 Annetree 阅读(328) 评论(0) 推荐(0)