摘要: 今天开始重新复习数据库,从基础的开始#include<stdio.h>#define MAXSIZE 20typedefBOOL statustypedefint ElemTypetypedef struct{ ElemType data[MAXSIZE]; int length;}SqList//定义线性表的数据结构status InitList(SqList *L){ L->length=0; return TRUE;}//初始化操作status ListEmpty(SqList *L){ if(L->length==0) return TRUE; else ret 阅读全文
posted @ 2012-11-28 11:02 fivebird 阅读(131) 评论(0) 推荐(0) 编辑