c语言双向链表的插入删除,双向链表插入删除基本应用介绍

双链表其实 也没什么 只是多了一个前置链而已

双链表的定义

struct DNode

{

int data;

struct DNode *next;

struct DNode *pre;

};

单链表的定义

view plaincopy

struct DNode

{

int data;

struct DNode *next;

};

其他的可以看上一篇博客 大致相同

#ifndef HEAD_H

#define HEAD_H

#include

using namespace std;

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#endif

struct DNode

{

int data;

struct DNode *next;

struct DNode *pre;

};

DNode *Creat()

{

DNode *head,*p,*s;

head=(DNode *)malloc(sizeof(DNode));

p=head;

int temp;

while (cin>>temp&&temp)

{

s=(DNode *)malloc(sizeof(DNode));

s->data=temp;

p->next=s;

s->pre=p;

p=s;

}

head=head->next;

p->next=NULL;

head->pre=NULL;

return (head);

}

DNode *Insert(DNode *&head,int num)

{

DNode *p,*s;

s=(DNode *)malloc(sizeof(DNode));

s->data=num;

p=head;

while (NULL!=p->next&&num>p->data)

{

p=p->next;

}

if (num<=p->data)

{

if (NULL==p->pre)

{

s->next=head;

head->pre=s;

head=s;

head->pre=NULL;

}

else

{

s->pre=p->pre;

p->pre->next=s;

s->next=p;

p->pre=s;

}

}

else

{

p->next=s;

s->pre=p;

s->next=NULL;

}

return(head);

}

DNode *Del(DNode *&head,int num)

{

DNode *p;

p=head;

while (NULL!=p->next&&num!=p->data)

{

p=p->next;

}

if (num==p->data)

{

if (NULL==p->pre)

{

head=p->next;

p->next->pre=head;

free(p);

}

else if (NULL==p->next)

{

p->pre->next=NULL;

free(p);

}

else

{

p->pre->next=p->next;

p->next->pre=p->pre;

free(p);

}

}

else

{

cout<

}

return head;

}

void Display(DNode *head)

{

DNode *p;

p=head;

while (NULL!=p)

{

cout<data)<

p=p->next;

}

cout<

}

#include "head.h"

int main()

{

DNode *head;

head=Creat();

Display(head);

#ifndef DEBUG

cout<

#endif

int insert_num;

while (cin>>insert_num&&insert_num)

{

Insert(head,insert_num);

Display(head);

}

#ifndef DEBUG

cout<

#endif

int delete_num;

while (cin>>delete_num&&delete_num)

{

Del(head,delete_num);

Display(head);

}

return (EXIT_SUCCESS);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值