双向链表插入删除

#include<iostream>
#include <limits>
#include <ctime>
using namespace std;

typedef struct dlist{//双向链表
	int value;
	dlist *next;
	dlist *prev;
}dlist, *pdlist;

void insert(pdlist &d,pdlist cur)//双链表插入元素
{
	if(!d){
		d=cur;
	}else{
		cur->next=d;
		d->prev=cur;
		d=cur;
		cur->prev=NULL;
	}
}
void del(pdlist &d,int elem)
{
	pdlist p=d,tmp;
	while (p){
		tmp=p->next;
		if(p->value==elem){
			if(p->prev!=NULL){//删除首结点,不执行该操作
				p->prev->next=p->next;
			}else{
				d=p->next;//删除首结点时,保存相关结点到d
			}
			if(p->next!=NULL)//删除尾结点,不执行该操作
				p->next->prev=p->prev;			
			delete p;//删除即将被删除的元素
		}
		p=tmp;
	}
}
int main()
{
	srand((unsigned)time(NULL));
	int count;
	while(count=rand()%6,count<5);
	count=20;
	pdlist pd=NULL,pl=NULL;
	int tmp;
	for(int i=0;i<count;++i){
		pd=new dlist;
		pd->next=NULL;
		pd->prev=NULL;
		tmp=rand()%3-1;
		pd->value=tmp;
		insert(pl,pd);
		cout<<tmp<<"\t";
	}
	cout<<endl;
	pd=pl;
	while (pd)
	{
		cout<<pd->value<<"\t";
		pd=pd->next;	
	}
	cout<<endl;
	pd=pl;
	int elem=rand()%3-1;
	cout<<"element "<<elem<<" is deleted"<<endl;
	del(pd,elem);	
	while (pd)
	{
		cout<<pd->value<<"\t";
		pd=pd->next;	
	}
	cout<<endl;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值