数据结构 - 线性表之顺序表 (c 语言)

SeqList.h #ifndef _SEQLIST_H_ #define _SEQLIST_H_ #include "stdio.h" #include "malloc.h" #include "assert.h" #define SEQLIST_INIT_SIZE 8 typedef int ElemType; typedef struct SeqList { ElemType *b
相关文章
相关标签/搜索