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
相關文章
相關標籤/搜索