专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
/*头文件*/#ifndef _SEQLIST_H_#define _SEQLIST_H_#include stdio.h#include string.h/***Description:数据结构中:顺序表操作*/typedef char TChar;typedef int TInt;#define MAXSIZE 5typedef struct array{ TChar tData[MAXSIZE]; TInt nLength;}*SeqList;void ErrorInfo(int nFlag);void InitSeqList(SeqList pSeqList);void A [阅读全文] [PDF]
1 共1条 分1页