实验一作业

#include<iostream> using namespace std; const int MaxSize = 100; template<class DataType> class SeqList { public: SeqList() { length = 0; } SeqList(DataType a[], int n) ; ~SeqList() {}; int Length() {
相关文章
相关标签/搜索