C++线性表的基本操作

C++线性表的基本操作: 代码如下: #include<iostream> #include<stdlib.h> using namespace std; typedef int Elem; #define LIST_INST_SIZE 8 class List { public: List(int size);//构造函数 ~List();//析构函数,销毁 void ClearLis
相关文章
相关标签/搜索