摘要:View Code 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define List_Size 100 5 #define List_Add 10 6 #define Error -1 7 #define OVERFLOW -2 8 9 typedef int ElemType; 10 typedef struct 11 { 12 ElemType *elem; 13 int length; 14 int listsize; 15 }SqList;//构造线性...
阅读全文