导航

[优秀论文源代码]通讯录(c++)_数据结构课程设计.docx

约12页 | 编号:5-91403|DOCX格式 展开

[优秀论文源代码]通讯录(c++)_数据结构课程设计,这是一份程序源代码.// 头文件# include//forward declarationtemplateclass list;//item template definitiontemplateclass item{public:friend list;item();item(const type );private:type data;item * next;
大小:16.56K合同范本大全

内容介绍
这是一份程序源代码.
// 头文件

# include
//forward declaration
template
class List;

//Item template definition
template
class Item
{
public:
friend List;
Item();
Item(const type &);
private:
type data;
Item * next;
猜您喜欢...