标签:顺序表

一个关于顺序表的问题,求指点

#include <iostream> template <class _Data_Type> class _T { private:          int MaxSize;          int _Length;          _Data_Type* K;      public:     _T(int _Para_S……

C 语言顺序表实现问题–快求来解答

     本人模仿课本(《数据结构(C语言版)》,严蔚敏,清华大学出版社,第2版)在数据结构线性表的顺序实现部分代码如下: #include <stdio.h> #include <stdlib.h> #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 #define TRUE 1 ……