數據結構第一章

#include using namespace std; const int maxsize=14; //14個數據,隨機定義 template class seqlist { public: seqlist(){length=0;} //無參,空順序表 seqlist(datatype a[],int n); //有參,長度爲n的順序表 ~seqlist(){} //析構函數,空 int Le
相關文章
相關標籤/搜索