链表基础:链表的结点插入
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
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
struct node
{
int data;
struct node *next;
};
int main()
{
int n,i,a;
struct node *head,*p,*q;
while(~scanf("%d",&n))
{
head=(struct node *)malloc(sizeof(struct node));
head->next=NULL;
for(i=0; i<n; i++)
{
p=(struct node *)malloc(sizeof(struct node));
scanf("%d%d",&a,&p->data);
q=head;
while(a--&&q->next!=NULL)
{
q=q->next;
}
p->next=q->next;
q->next=p;
}
head=head->next;
for(i=0; i<n; i++)
{
if(i!=n-1)
{
printf("%d ",head->data);
head=head->next;
}
else
printf("%d\n",head->data);
}
}
return 0;
}