摘要: 最近做了个实验,写个线性表,感觉挺好写,但还是发现了几个值得注意的地方,代码如下:#include<stdio.h>#include<conio.h>#include<stdlib.h>#define TRUE 1#define FALSE 0#define OVERFLOW -2#define OK 1#define ERROR 0#define LIST_INIT_SIZE 10#define LISTINCREMENT 4typedef int Elemtype;typedef int Status;typedef struct{ Elemtype * 阅读全文
posted @ 2012-03-29 22:55 龙杉老师 阅读(470) 评论(0) 推荐(0)