1. 首页
  2. 网络技术
  3. 网管软件
  4. 数据结构 链表类定义代码.doc

数据结构 链表类定义代码.doc

上传者: 2020-12-12 10:41:48上传 DOC文件 35.5KB 热度 6次
链表类定义将该类保存在文件LinkList.h中 //链表类定义将该类保存在文件LinkList.h中 template struct Node { T data; Node *next; //此处也可以省略 }; template class LinkList { public: LinkList( ) { first=new Node
下载地址
用户评论