摘要: 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... 阅读全文