2017年9月22日
摘要: static.h #define STATIC_INIT_SIZE 100#define STATICINCREMENT 10#define ERROR 0#define OK 1typedef struct { int *base;//定义栈底 int *top;//定义栈顶元素 int stat 阅读全文
posted @ 2017-09-22 17:35 paulversion 阅读(3144) 评论(0) 推荐(0)
摘要: typeStructDefine.h typedef struct DuLNode { int data; struct DuLNode *prior; struct DuLNode *next; }DuLNode,*DuLinkList; typedef int Status; //初始化一个空指 阅读全文
posted @ 2017-09-22 15:57 paulversion 阅读(207) 评论(0) 推荐(0)