usingnamespacestd;templatestructNode{Node_en"> usingnamespacestd;templatestructNode{Node_en" />
数据结构:双向链表的实现和测试(C++).doc

数据结构:双向链表的实现和测试(C++).doc

ID:52199596

大小:37.00 KB

页数:6页

时间:2020-03-24

数据结构:双向链表的实现和测试(C++).doc_第1页
数据结构:双向链表的实现和测试(C++).doc_第2页
数据结构:双向链表的实现和测试(C++).doc_第3页
数据结构:双向链表的实现和测试(C++).doc_第4页
数据结构:双向链表的实现和测试(C++).doc_第5页
资源描述:

《数据结构:双向链表的实现和测试(C++).doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库

1、//在Doublelinkedlist.h内#include"utility.h"#includeusingnamespacestd;templatestructNode{Node_entryentry;Node*next;Node*back;Node();Node(Node_entryx,Node*link_back=NULL,Node*link_nex

2、t=NULL);};templateNode::Node(){next=NULL;back=NULL;}templateNode::Node(Node_entryx,Node*link_back,Node*link_next){entry=x;next=link_next;back=link_back;}template

3、entry>classList{public:List();voidclear();boolempty()const;boolfull()const;intsize()const;Error_codeinsert(intposition,constList_entry&x);Error_coderemove(intposition,List_entry&x);Error_coderetrieve(intposition,List_entry&x)const;Error_codereplace(intpo

4、sition,constList_entry&x);protected:intcount;mutableintcurrent_position;mutableNode*current;voidset_position(intpisition)const;};templateList::List(){count=0;current_position=0;current=NULL;}template

5、ry>voidList::clear(){List_entrytemp;for(inti=0;iboolList::empty()const{returncount==0;}templateboolList::full()const{returnfalse;}template

6、lassList_entry>intList::size()const{returncount;}templatevoidList::set_position(intposition)const{if(current_position<=position)for(;current_position!=position;current_position++)current=current->next;elsefor(;cur

7、rent_position!=position;current_position--)current=current->back;return;}templateError_codeList::insert(intposition,constList_entry&x){Node*new_node,*following,*preceding;if(position<0

8、

9、position>count)returnError_

10、code::range_error;if(position==0){if(count==0)following=NULL;else{set_position(0);following=current;}preceding=NULL;}else{set_position(position-1);preceding=current;following=preceding->next;}new_node=newNode(x

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。