数据结构线性表中的顺序表实现

#include<iostream> #include<malloc.h> using namespace std; typedef int ElemType; #define InitSize 100 #define LISTINCREMENT 10 typedef struct{     ElemType *data;     int length;//线性表的长度     int lists
相关文章
相关标签/搜索