C++数据结构 11 双向链表

双向链表:

有三个域:

  1. 左链域 llink
  2. 右链域 rlink
  3. 数据域 data

需要有表头结构


#ifndef __DoubleList_H__
#define __DoubleList_H__

#include <iostream>

using namespace std;

class DoubleList;  //声明

class DoubleListNode   //节点
{
   friend class DoubleList;
public:
    int data;
    DoubleListNode *llink,*rlink;
};

class DoubleList
{
public:
    DoubleList()
    {
      first=new DoubleListNode();
      first->llink=first->rlink=first;    //first的左边和右边都指向自己
    }
    void Insert(DoubleListNode*p,DoubleListNode*x);  //插入 向数据的右边插入
    void Delet(DoubleListNode*);  //删除数据
//private:
    DoubleListNode* first;  //指向第一个数据
};

void DoubleList::Insert(DoubleListNode*p,DoubleListNode*x)//将p插入到x的右边
{
   p->llink=x;
   p->rlink=x->rlink;
   x->rlink->llink=p;
   x->rlink=p;
}

void DoubleList::Delet(DoubleListNode*x)  //删除一个元素
{
    if(x==first) cout<<"Error";
    else
    {
        x->llink->rlink=x->rlink;
        x->rlink->llink=x->llink;
    }
}

#endif // __DoubleList_H__

main

#include <iostream>
#include "DoubleList.h"
using namespace std;

int main()
{
    DoubleList P;
    DoubleListNode node1,node2,node3,node4,node5;
    node1.data=10;
    node2.data=20;
    node3.data=30;
    node4.data=40;
    node5.data=50;
    P.Insert(&node1,P.first);
    P.Insert(&node2,P.first);
    P.Insert(&node3,P.first);
    P.Insert(&node4,P.first);
    P.Insert(&node5,P.first);
    cout<<P.first->rlink->data<<endl;
    cout<<P.first->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->rlink->data<<endl;
    P.Delet(&node3);
    cout<<P.first->rlink->data<<endl;
    cout<<P.first->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->data<<endl;
    cout<<P.first->rlink->rlink->rlink->rlink->data<<endl;
   // cout << "Hello world!" << endl;
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值