摘要: #include #include #define LIST_INIT_SIZE 100 #define LISTINCREMEMT 10 #define OK 1 #define OVERFLOW -2 #define ERROR -1 typedef int ElemType; typedef int Status; typedef struct { ElemType *elem... 阅读全文
posted @ 2016-11-08 20:02 799 阅读(134) 评论(0) 推荐(0) 编辑