2054=数据结构实验之链表九:双向链表

Posted angfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2054=数据结构实验之链表九:双向链表相关的知识,希望对你有一定的参考价值。

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 struct node
 4 {
 5     int data;
 6     struct node*next,*last;
 7 };
 8 int main()
 9 {
10     int m,n,x,i,a;
11     struct node*head,*p,*end;
12     head=(struct node*)malloc(sizeof(struct node));
13     head->next=NULL;
14     end=head;
15     scanf("%d %d",&n,&m);
16     for(i=0; i<n; i++)
17     {
18         p=(struct node*)malloc(sizeof(struct node));
19         scanf("%d",&p->data);
20         p->next=NULL;
21         end->next=p;
22         p->last=end;//双向链表其实和单向链表没啥区别,就是在下一个加了一个(上一个)。
23         end=p;
24     }
25     for(i=0; i<m; i++)
26     {
27         scanf("%d",&a);
28         for(p=head->next; p; p=p->next)//这里是head不是NULL;
29         {
30             if(p->data==a)
31             {
32                 if(p->last!=head&&p->next!=NULL)printf("%d %d
",p->last->data,p->next->data);
33                 else if(p->last!=head)printf("%d
",p->last->data);
34                 else if(p->next!=NULL)printf("%d
",p->next->data);
35             }
36         }
37     }
38     return 0;
39 }

 

以上是关于2054=数据结构实验之链表九:双向链表的主要内容,如果未能解决你的问题,请参考以下文章

Java数据结构线性表之链表

Java数据结构线性表之链表

数据结构学习笔记二线性表之链表篇(双向链表)

数据结构之链表(JAVA)

数据结构实验之链表三:链表的逆置

Linux内核数据结构之链表