博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
山东理工OJ【2054】双向链表(两种方法)
阅读量:6321 次
发布时间:2019-06-22

本文共 2769 字,大约阅读时间需要 9 分钟。



双向链表

Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

学会了单向链表,我们又多了一种解决问题的能力,单链表利用一个指针就能在内存中找到下一个位置,这是一个不会轻易断裂的链。但单链表有一个弱点——不能回指。比如在链表中有两个节点A,B,他们的关系是BA的后继,A指向了B,便能轻易经A找到B,但从B却不能找到A。一个简单的想法便能轻易解决这个问题——建立双向链表。在双向链表中,A有一个指针指向了节点B,同时,B又有一个指向A的指针。这样不仅能从链表头节点的位置遍历整个链表所有节点,也能从链表尾节点开始遍历所有节点。对于给定的一列数据,按照给定的顺序建立双向链表,按照关键字找到相应节点,输出此节点的前驱节点关键字及后继节点关键字。

输入

第一行两个正整数n(代表节点个数),m(代表要找的关键字的个数)。接下来n行每行有一个整数为关键字key(数据保证关键字在数列中没有重复)。接下来有m个关键字,每个占一行。

输出

对给定的每个关键字,输出此关键字前驱节点关键字和后继节点关键字。如果给定的关键字没有前驱或者后继,则不输出。给定关键字为每个输出占一行。

 

示例输入

10 31 2 3 4 5 6 7 8 9 0350

示例输出

2 44 69
 
 
 
 
 
 
(一)单链表法#include 
#include
struct node{ int data; struct node *next;} ;//定义链表的节点struct node *creat(int n){ int i; struct node *head,*p,*tail; head=(struct node *)malloc(sizeof(struct node)); head->next=NULL; tail=head; for(i=0; i
data); p->next=NULL; tail->next=p; tail=p; } return head;};//顺序建立链表struct node *found(struct node *head,int key)//查找函数{ struct node *p,*q; p=head->next; q=head; while(p->next!=NULL) { if(p->data==key) { if(q==head) printf("%d\n",p->next->data); else printf("%d %d\n",q->data,p->next->data); break; } q=p; p=p->next; } if(p->next==NULL) printf("%d\n",q->data); return NULL;};int main(){ int key,n,m,i; struct node *head; scanf("%d %d",&n,&m); head=creat(n); for(i=0; i
 

 

(二)双向链表法#include 
#include
#include
struct node{ int data; struct node *last;//保存前一个节点的地址 struct node *next;};struct node *creat(int n)//建立双向链表{ int i; struct node *head,*p,*tail; head=(struct node *)malloc(sizeof(struct node)); head->next=NULL; head->last=NULL; tail=head; for(i=0;i
data); p->next=NULL; p->last=tail; tail->next=p; tail=p; } return head;};void ser(struct node *head){ int key; struct node *p; scanf("%d",&key); p=head->next; while(p!=NULL) { if(p->data==key) { if(p->next!=NULL&&p->last==head) { printf("%d\n",p->next->data); break; } else if(p->next!=NULL&&p->last!=head) { printf("%d %d\n",p->last->data,p->next->data); break; } else { printf("%d\n",p->last->data); break; } } p=p->next; }}int main(){ int n,m,i; struct node *head; scanf("%d %d",&n,&m); head=creat(n); for(i=0;i

转载于:https://www.cnblogs.com/jiangyongy/p/3971706.html

你可能感兴趣的文章
maven+nexus私服库的搭建配置
查看>>
查看Web服务器并发请求连接数
查看>>
我的友情链接
查看>>
工作跟生活
查看>>
Linux umount 报 device is busy 的处理方法
查看>>
如何打造优质网站页面心得
查看>>
自动化运维工具Ansible详细部署
查看>>
翻身的废鱼——论PHP从入门到放弃需要多久?4
查看>>
C标签如何使用
查看>>
FreeBSD 11.1 pkg安装vim
查看>>
Active Direcyory之证书颁发机构(CA服务器)
查看>>
Cocos2d-x中 debugDraw 的使用
查看>>
普通用户授予select any table 权限
查看>>
python文件操作及函数学习
查看>>
nagios pnp4nagios yum 安装 配置
查看>>
cacti相关资料网站
查看>>
做好软件项目的验收的方法
查看>>
Spring Boot 学习记录(一)——Spring Boot整合Mybatis
查看>>
Systemd 进程管理相关
查看>>
yum remove千万别乱用!!!
查看>>