摘要: Slist:#ifndef SLIST_H_#define SLIST_H_#include templatestruct Slist_node{ T element; Slist_node * next; Slist_node():element(),next(0){} e... 阅读全文
posted @ 2015-09-25 22:14 jx_yangbo 阅读(185) 评论(0) 推荐(0) 编辑
摘要: SeqList:#ifndef SEQLIST_H_#define SEQLIST_H_const int Size = 100;templateclass SeqList{private: Type *m_elements; const int m_maxsize; int m_... 阅读全文
posted @ 2015-09-25 20:24 jx_yangbo 阅读(176) 评论(0) 推荐(0) 编辑