C - 师--链表的结点插入 SDUT


Description

给出一个只有头指针的链表和 n 次操作,每次操作为在链表的第 m 个元素后面插入一个新元素x。若m 大于链表的元素总数则将x放在链表的最后。


Input

多组输入。每组数据首先输入一个整数n(n∈[1,100]),代表有n次操作。
接下来的n行,每行有两个整数Mi(Mi∈[0,10000]),Xi。


Output

对于每组数据。从前到后输出链表的所有元素,两个元素之间用空格隔开。


Sample
Input

4
1 1
1 2
0 3
100 4


Output

3 1 2 4


Hint


#include <stdio.h>
#include <stdlib.h>

struct node
{
    int a;
    struct node *next;

};
int main()
{
    struct node *head,*p;
    int n,t,x,i;
    while(~ scanf("%d",&n))
    {
        head = (struct node *)malloc(sizeof(struct node));
        head -> a = -1;
        head  -> next  = NULL;
      //建立头结点,头结点又为空节点;
       for(i=0;i<n;i++)
        {
            scanf("%d%d",&t,&x);
            p = (struct node *)malloc(sizeof(struct node));
            p -> a = x;
            p -> next = NULL;  //建立新的节点;
            struct node*q = head -> next;
            struct node*qi = head;

                while(t--&&q)
                {
                    q = q -> next;
                    qi = qi -> next;
                }
                if(t)
                {
                    qi -> next = p;
                    p -> next  = q;
                }
                else
                {
                    qi -> next = p;
                    p ->next = NULL;
                } 
                //以上为三种情况,注意不要漏掉;

        }
        p = head -> next ;
        while(p)  //链表的输出;
        {
            if(p -> next)
                printf("%d ",p ->a);
            else printf("%d\n",p -> a);
            p = p-> next;
        }

    }




    return 0;
}
发布了162 篇原创文章 · 获赞 119 · 访问量 3218

猜你喜欢

转载自blog.csdn.net/zhangzhaolin12/article/details/104022912