摘要:
1 #include 2 #include 3 #define OVERFLOW -2 4 #define OK 1 5 #define ERROR 0 6 typedef int ElemType; 7 8 typedef struct LNode { 9 Ele... 阅读全文
摘要:
1 #include 2 #include 3 4 #define LIST_INIT_SIZE 100 5 #define LISTINCREMENT 10 6 #define OVERFLOW -2 7 #define OK 1 8 #define ERROR 0 9 ... 阅读全文