双链表


#include <iostream>
#include <algorithm>
using namespace std;
struct node{
 int data;
 node *last,*next;
};
class doublel{
public:
    //双链表的构造函数(非空的链表,输入数据为0,表示输入结束)
    doublel(int a[],int n)
    {
        first=new node;
        first->next=NULL;
        first->last=NULL;
        for(int i=0;i<n;i++)
        {
           node *s;
           s=new node;
           s->data=a[i];
           s->next=first->next;
           first->next=s;
           s->last=first;
           if(s->next)
            s->next->last=s;



        }

    }
    //插入操作(将一个数据元素插入到有序的双链表中,插入之后链表仍然有序,输入数据为0表示插入操作结束)
    void Insert(int x)
    {
        node *s,*d;
        s=new node;
        s->data=x;
        node *p;
        p=new node;
        p=first->next;
        while(p->next!=NULL&&p->data<x)
        {

            p=p->next;
        }
       s->next=p->next;
       p->next=s;
       s->last=p;
       if(s->next!=NULL)
        s->next->last=s;


    }
//    //按值删除节点(考虑有重复值的情况)
//    void Delete(int x)
//    {
//        node *s,*p;
//        p=new node;
//        s=new node;
//        s=first->next;
//        while(s)
//        {
//            if(s->data==x)
//               {
//                   p=s;
//                  s->last->next=s->next;
//                  if(s->next)
//                  s->next->last=s->last;
//               }
//            s=s->next;
//            delete p;
//        }
//    }
//void Insert(int x)
//	{
//      node* s;
//		s = new node;
//		s->data = x;
//		node* p;
//		p = first;
//		while (p->next != NULL && p->next->data < x)
//		{
//			p = p->next;
//		}
//
//		s->next = p->next;
//		if(p->next!=NULL)
//			p->next->last = s;
//		s->last = p;
//		p->next = s;
//	}
	void Delete(int x)
	{
		node* p;
		p = first;
		while (p->next != NULL && p->next->data != x)
		{
			p = p->next;
		}
		while (p != NULL && p->next != NULL)
		{
			node* q;
			q = p->next;
			p->next = q->next;
			if(p->next!=NULL)
				q->next->last = p;
			delete q;
			if (p->next == NULL || p->next->data != x)
				break;
		}
	}
    //双链表的遍历操作
    void bl()
    {
        node *s;
        s=first->next;
        while(s)
        {
            cout<<s->data<<" ";
            s=s->next;
        }
        cout<<endl;
    }
private:
    node *first;
};

bool cmp(int a,int b){
    return a > b;
}

int main()
{  int num,c=0;
   int a[100];
   for(int i=0;i<100;i++)
   {


       cin>>num;
       if(num!=0)
       {
           a[i]=num;
           c++;
       }

       else
        break;
   }
   sort(a,a+c,cmp );
    doublel l(a,c);
    l.bl();
    while(true)
    {
        cin>>num;
        if(num==0)
            break;
          l.Insert(num);
    }

    l.bl();
    while(true)
    { cin>>num;
         if(num==0)
            break;
            l.Delete(num);
    }

    l.bl();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值