页首html
摘要: #ifndef SEQLIST_H#define SEQLIST_H#includeusing namespace std;const int Maxsize = 100;templateclass SeqList{public: SeqList();//构造空链表 SeqList(T a[],... 阅读全文
posted @ 2014-10-23 17:51 烟花散尽13141 阅读(105) 评论(0) 推荐(0) 编辑