文章分类 -  数据结构

摘要:sqlist.h 1 #ifndef SQ_LIST_H 2 #define SQ_LIST_H 3 4 #define OK 1 5 #define ERROR 0 6 #define TRUE 1 7 #define FLASE 0 8 9 typedef void TSqList;10 typedef int Status;11 12 typedef int ElemType;13 typedef struct sq_list14 {15 int length;16 int MaxSize;17 ElemType * data;18 }SqList;19 20... 阅读全文
posted @ 2013-12-02 20:51 王老二~ 阅读(101) 评论(0) 推荐(0)