實驗二:順序表的基本操作實現及其應用

1.建立一個由8位同學成績的順序表,實現數據的插入,刪除,查找等操作,分別輸出結果。 #include<iostream>   using namespace std;   const int max=100;   template <typename T>   class SeqList{       public:           SeqList(T score[],int n);   
相關文章
相關標籤/搜索