双向链表插入删除基本应用介绍

2016-02-19 11:51 1 1 收藏

下面,图老师小编带您去了解一下双向链表插入删除基本应用介绍,生活就是不断的发现新事物,get新技能~

【 tulaoshi.com - 编程语言 】

双链表其实 也没什么 只是多了一个前置链而已
双链表的定义
代码如下:

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 iostream
using namespace std;
#include cassert
#include cstdlib
#include cmath
#include sstream
#include fstream
#include string
#include algorithm
#include list
#include queue
#include vector
#include deque
#include stack
#include bitset
#include set
#include map
#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 (cintemp&&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&&nump-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
{
coutnum" cound not be found"endl;
}
return head;
}
void Display(DNode *head)
{
DNode *p;
p=head;
while (NULL!=p)
{
cout(p-data)" ";
p=p-next;
}
coutendl;
}

代码如下:

#include "head.h"
int main()
{
DNode *head;
head=Creat();
Display(head);
#ifndef DEBUG
cout"please input an num to insert:";
#endif
int insert_num;
while (cininsert_num&&insert_num)
{
Insert(head,insert_num);
Display(head);
}
#ifndef DEBUG
cout"please input an number to delete:";
#endif
int delete_num;
while (cindelete_num&&delete_num)
{
Del(head,delete_num);
Display(head);
}
return (EXIT_SUCCESS);
}

来源:http://www.tulaoshi.com/n/20160219/1598907.html

延伸阅读
Fragment Android是在Android 3.0 (API level 11)开始引入Fragment的。 可以把Fragment想成Activity中的模块,这个模块有自己的布局,有自己的生命周期,单独处理自己的输入,在Activity运行的时候可以加载或者移除Fragment模块。 可以把Fragment设计成可以在多个Activity中复用的模块。 当开发的应用程序同时适用于平板电脑和手机时,可...
标签: SQLServer
1、字符串函数 长度与分析用 datalength(Char_expr) 返回字符串包含字符数,但不包含后面的空格 substring(expression,start,length) 不多说了,取子串 right(char_expr,int_expr) 返回字符串右边int_expr个字符 字符操作类 upper(char_expr) 转为大写 lower(char_expr) 转为小写 space(int_expr) ...
摇篮曲的基本介绍 Normal 0 7.8 磅 0 2 false false false MicrosoftInternetExplorer4 原是母亲抚慰小儿入睡的歌曲,通常都很简短。旋律轻柔甜美,伴奏的节奏型则带摇篮的动荡感。许多大作曲家如...
标签: 电脑入门
①打开PowerPoint2013幻灯片,看到我们打开的幻灯片有批注信息。 ②单击审阅--删除按钮。准备吧批注删掉。 ③选择第一项删除,如果幻灯片页数过多,可以选择下面的两项。 ④删除完毕,从右侧任务窗格中可以看到已经没了批注。
标签: Android
Android 彻底删除系统应用方法   首先强调一下,需要完全root权限,网上的无痛root是部分权限,不好用的。大家一般都会删除自己安装的程序了,最简单的办法就是,设置应用程序管理应用程序,找到并卸载。 这种办法的话,系统自带的程序是删除不掉的。可是很多人可能有整洁癖,看着自己手机里有自己用不上的程序就闹心,恨不得用...

经验教程

849

收藏

48
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部