[优秀论文源代码]通讯录(c++)_数据结构课程设计.docx
约12页DOCX格式手机打开展开
[优秀论文源代码]通讯录(c++)_数据结构课程设计,这是一份程序源代码.// 头文件# include//forward declarationtemplateclass list;//item template definitiontemplateclass item{public:friend list;item();item(const type );privat...
内容介绍
此文档由会员 csfujixie 发布
这是一份程序源代码.
// 头文件
# include
//forward declaration
template
class List;
//Item template definition
template
class Item
{
public:
friend List;
Item();
Item(const type &);
private:
type data;
Item * next;
// 头文件
# include
//forward declaration
template
class List;
//Item template definition
template
class Item
{
public:
friend List;
Item();
Item(const type &);
private:
type data;
Item * next;