- 博客(2)
- 资源 (10)
- 收藏
- 关注
原创 数据结构之顺序表C++实现
/*----------sqlist.h----------*/ #ifndef SQLIST_H#define SQLIST_H//起始下标为 1 //最大下标为 SIZE const int SIZE(10); //此处修改默认表长大小 template class Sqlist{public: Sqlist(int maxsize=SIZE) { wh
2010-04-20 09:57:00
383
原创 数据结构之单链表 C++ 实现
/*----------head.h ----------*/#ifndef HEAD_H#define HEAD_H#include using namespace std;#include typedef int status;#endif /*----------node.h ----------*/#ifndef NODE_H#define NODE_Htempla
2010-04-20 09:52:00
323
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人