摘要:
模板类//LinkList.h 单链表#ifndef LINK_LIST_HXX#define LINK_LIST_HXX#include using namespace std;templatestruct Node{ T data; Node * next;};templateclass... 阅读全文
posted @ 2015-08-12 11:17
cclhf
阅读(405)
评论(0)
推荐(0)
摘要:
//SequentialList.h 顺序表模板类#ifndef SEQUENTIAL_LIST_HXX#define SEQUENTIAL_LIST_HXXusing std::cout;using std::endl;const int MaxSize=100; //顺序表数组最大值temp... 阅读全文
posted @ 2015-08-12 06:00
cclhf
阅读(1640)
评论(1)
推荐(0)

浙公网安备 33010602011771号