摘要: LinkList.h 1 #ifndef LINKLIST_H 2 #define LINKLIST_H 3 4 5 6 template class Node 7 { 8 //friend class LinkList; 9 public:10 Node();11 Node(const Type &item);12 ~No... 阅读全文
posted @ 2007-06-03 01:20 中土 阅读(834) 评论(0) 推荐(0) 编辑
摘要: SqList.h 1 #ifndef SQLIST_H 2 #define SQLIST_H 3 4 //#include 5 6 #define LIST_INIT 100 7 #define LIST_INCREMENT 100 8 9 template class SqList10 {11 public:12 SqList();13 ~SqList();14 ... 阅读全文
posted @ 2007-06-03 01:16 中土 阅读(4931) 评论(0) 推荐(0) 编辑
摘要: 模板实现Stack class并验证 阅读全文
posted @ 2007-06-03 00:52 中土 阅读(742) 评论(0) 推荐(0) 编辑
©2005-2008 Suprasoft Inc., All right reserved.