摘要:
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
阅读(330)
评论(0)
推荐(0)