數據結構-線性表的順序存儲實現及各類操做代碼

//該程序實現了線性表的順序存儲結構和各項操做,並實現了兩個無序集合A、B的並集,並將結果存放到A中,A=A並B #include<iostream> using namespace std; //****線性表和一些基礎的定義***** //線性表的最大長度 #define MAXSIZE 20 #define ElemType int /*表中數據元素類型*/ typedef stru
相關文章
相關標籤/搜索