摘要: #include <stdio.h>#include <stdlib.h>#define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1#define OVERFLOW -2#define LIST_INIT_SIZE 100#define LISTINCREMENT 10typedef int Status;typedef int ElemType;typedef struct{ ElemType *elem; int length; int listsize;}SqList; 阅读全文
posted @ 2012-06-09 19:59 小跳蚤 阅读(140) 评论(0) 推荐(0) 编辑