C语言 顺序表的实现 (动态)

给出顺序表的定义:windows typedef int DataType; typedef struct SeqListD { DataType* _pData; int _size; // 顺序表中有效元素的个数 int _capacity; // 顺序表中可容纳元素的最大值 }SeqListD, *PSeqListD; 将函数的声明放在head.h的头文件里面: #ifndef
相关文章
相关标签/搜索