zoukankan      html  css  js  c++  java
  • 双向链表

    Problem Description
    学会了单向链表,我们又多了一种解决问题的能力,单链表利用一个指针就能在内存中找到下一个位置,这是一个不会轻易断裂的链。但单链表有一个弱点——不能回指。比如在链表中有两个节点A,B,他们的关系是B是A的后继,A指向了B,便能轻易经A找到B,但从B却不能找到A。一个简单的想法便能轻易解决这个问题——建立双向链表。在双向链表中,A有一个指针指向了节点B,同时,B又有一个指向A的指针。这样不仅能从链表头节点的位置遍历整个链表所有节点,也能从链表尾节点开始遍历所有节点。对于给定的一列数据,按照给定的顺序建立双向链表,按照关键字找到相应节点,输出此节点的前驱节点关键字及后继节点关键字。
    Input
    第一行两个正整数n(代表节点个数),m(代表要找的关键字的个数)。第二行是n个数(n个数没有重复),利用这n个数建立双向链表。接下来有m个关键字,每个占一行。
    Output
    对给定的每个关键字,输出此关键字前驱节点关键字和后继节点关键字。如果给定的关键字没有前驱或者后继,则不输出。
    注意:每个给定关键字的输出占一行。
               一行输出的数据之间有一个空格,行首、行末无空格。
     
    Example Input
    10 3
    1 2 3 4 5 6 7 8 9 0
    3
    5
    0
    Example Output
    2 4
    4 6
    9
    
    
    #include<iostream>
    #include<cstdlib>
    #include <cstdio>
    
    using namespace std;
    typedef int ElemType;
    typedef struct LNode
    {
        ElemType data;
        struct LNode *next1,*next2;
    }*LinkList;
    int main()
    {
        int n,m,i,t;
        cin>>n>>m;
        LinkList L,p,tail;
        L=new LNode;
        L->next1=NULL;
        tail=L;
        for(i=0;i<n;i++)
        {
            p=new LNode;
            cin>>p->data;
            p->next1=NULL;
            p->next2=NULL;
            tail->next1=p;
            p->next2=tail;
            tail=p;
        }
        tail=L->next1;
        while(m--)
        {
            cin>>t;
            for(i=0;i<n;i++)
            {
                if(tail->data==t)
                {
                    if(tail->next2!=L)
                        cout<<tail->next2->data<<" ";
                    if(tail->next1!=NULL)
                        cout<<tail->next1->data<<endl;
                    else
                        cout<<"
    ";
                }
                tail=tail->next1;
            }
            tail=L->next1;
        }
        return 0;
    }
    
  • 相关阅读:
    hdu 4332 Constructing Chimney 夜
    poj 2449 Remmarguts' Date 夜
    poj 2728 Desert King 夜
    poj 1639 Picnic Planning 夜
    poj 1125 Stockbroker Grapevine 夜
    poj 3621 Sightseeing Cows 夜
    hdu 4333 Revolving Digits 夜
    hdu 4345 Permutation 夜
    hdu 1874 通畅工程续 夜
    es6(二)
  • 原文地址:https://www.cnblogs.com/xiao-xue-di/p/9454787.html
Copyright © 2011-2022 走看看