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

choosy_20498 5 0 DOC 2020-12-12 10:12:48

链表类定义将该类保存在文件LinkList.h中 //链表类定义将该类保存在文件LinkList.h中 template struct Node { T data; Node *next; //此处也可以省略 }; template class LinkList { public: LinkList( ) { first=new Node

用户评论
请输入评论内容
评分:
暂无评论