• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

C++ 实现双向链表的实例

c++ 搞代码 4年前 (2022-01-06) 39次浏览 已收录 0个评论

这篇文章主要介绍了C++ 实现双向链表的实例的相关资料,需要的朋友可以参考下

双向链表C++ 的实现    

               本文是通过C++ 的知识实现数据结构中的双向链表,这里不多说 了,代码注释很清楚,

实现代码:

 //double LinkList implement with C++ template #include using namespace std; /*template class DBListADT { public: virtual void Append(const Type &)=0; virtual void Insert(const Type &)=0; virtual void Remove(const Type &)=0; }; template class DLinkListNode:public DBListADT//此处必须为实现的类型,当然以派生类的模板类型也可以,但是不能是Type { public: void Append(const T &);//这边也需要是当前类的类型,不能为Type void Insert(const T &); void Remove(const T &); };*/ templateclass DLinkList; template class DNode { friend class DLinkList;//指定前需声明 public: DNode(){next=NULL;prior=NULL;} ~DNode(){} private: DNode *next; DNode *prior; Type data; }; template class DLinkList { public: DLinkList() { //   head=new DNode[sizeof(DNode)]; head=new DNode; } ~DLinkList() { if(head->next==NULL) delete head; else { DNode *p=head->next; DNode*s=NULL; while(p) { s=p->next ; delete p; p=s; } } } void DeleteElement(size_t position) { DNode *p=head->next; size_t index=1; for(;indexnext ; if(p==NULL) return ; p->prior ->next =p->next ; p->next ->prior =p->prior ; delete p; } void InsertElement(T data,size_t position); void CreateDLinkList(T a[],int n); void PrintDLinkList(); private: DNode *head; }; template void DLinkList:: InsertElement (T data,size_t position) { DNode *p=head->next; size_t index=1; for(;indexnext; if(p==NULL) return; //DNode *s=new DNode[sizeof(DNode)]; DNode *s=new DNode; s->data=data; s->next=p; s->prior=p->prior; p->prior->next=s; p->prior=s; } template void DLinkList::CreateDLinkList(T a[],int n) { DNode*p=head; DNode*s=NULL; int i=0; for(;i<n;i++) { // s=new DNode[sizeof(DNode)]; s=new DNode; s->data=a[i]; p->next=s; s->prior=p; p=s; } s->next=NULL; } templatevoid DLinkList::PrintDLinkList () { DNode *p=head->next; while(p) { cout<data<next; } } int main() { int a[10]={1,2,3,4,5,6,7,8,9,10}; DLinkListDlist; Dlist.CreateDLinkList(a,10); Dlist.DeleteElement (3); Dlist.InsertElement(3,3); Dlist.PrintDLinkList(); return 0; } //double LinkList implement with C++ Class //************************************************************ /*#include using namespace std; class Node { friend class List; public: //Node(int a):next(NULL),prior(NULL),data(a){} Node(){} private: Node *next; Node *prior; int data; }; class List { public: List() { cout<<"create head DBLinkList"<next==NULL) { delete head; } else { Node *p=head->next; Node *s; delete head; while(p) { s=p->next ; delete p; p=s; } } cout<<"destructor called to clear DBLinkList"<next =NULL; Node *s,*p=head; int i=0; for(;idata =a[i]; p->next =s; s->prior =p; p=s; } s->next =NULL; } void List::PrintDList() { Node *p=head->next ; while(p) { cout<data <next ; } } void List::DeleteElemData(int position) {//可以通过重载delete运算符来达到这个效果,则直接用delete就OK了 Node *p=head->next ; //while(p!=NULL&&p->data !=data) //   p=p->next ; int i=1; for(;inext ; if(p==NULL) return ; p->prior ->next =p->next ; p->next ->prior =p->prior ; delete p; } void List::InsertElement (int data,int position) {//可以重载new运算符来达到这个效果,则直接用new就OK了 Node *p=head->next ; int i=1; for(;inext ; Node *s=new Node[sizeof(Node)]; s->data =data; s->prior<span style="color:transparent">来源gaodai#ma#com搞*代#码网</span> =p->prior ; s->next =p; p->prior ->next =s; p->prior =s; } int main() { List Dlist; int a[10]={1,2,3,4,5,6,7,8,9,10}; Dlist.CreateDoubleLink (a,10); Dlist.DeleteElemData(3); Dlist.InsertElement (3,3); Dlist.PrintDList (); return 0; }*/ //************************************************************************************* 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

以上就是C++ 实现双向链表的实例的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:C++ 实现双向链表的实例
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址