10 2017 档案
摘要:/*线性表的链式表示和实现*/#include#include#includetypedef int Status;typedef int ElemType;#define TRUE 1#define ERROR 0#define FALSE 0#define OK ...
阅读全文
摘要:/*线性表的顺序表示和实现*/#include#include#include#define LIST_INIT_SIZE 100#define LISTINCREMENT 10#define TRUE 1#define ERROR 0#define FALSE 0#...
阅读全文