9-20 sdut-C语言实验-链表的结点插入

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

输入格式:

多组输入。每组数据首先输入一个整数n(n∈[1,100]),代表有n次操作。

接下来的n行,每行有两个整数Mi(Mi∈[0,10000]),Xi。

输出格式:

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

输入样例:

4
1 1
1 2
0 3
100 4

输出样例:

3 1 2 4

该题目要注意是多组输入

它可以输入多组n,用一个while和一个for配合起来,来实现多组输入

不然的话第二个测试点会过不了

#include
#include
typedef struct node{
	int data;
	struct node *next;
}node;
int main()
{
	int n;
	while(~scanf("%d",&n)){
		int num=0;
		node *head=NULL;
		head=(node*)malloc(sizeof(node));
		head->next=NULL;
		node *tail=NULL;
		tail=head;
		num=1;
		for(int i=0;idata=x;
			p->next=NULL;
			head->next=p;
			tail=p;
			num=2;
		}
		else if(m+1>=num){
			node *p;
			p=(node*)malloc(sizeof(node));
			p->data=x;
			p->next=NULL;
			tail->next=p;
			tail=p;
			num++;
		}
		else{
			node *p;
			p=head;
			int j=1;
			while(jnext;
				j++;
			}
			node *q;
			q=(node*)malloc(sizeof(node));
			q->data=x;
			q->next=p->next;
			p->next=q;
			num++;
		}
	}
	node *p;
    if(head->next==NULL);
    else{
        for(p=head->next;p->next!=NULL;p=p->next){
		printf("%d ",p->data);
	}
    printf("%d\n",p->data);
    }
}
	return 0;
}

你可能感兴趣的:(c语言,链表,数据结构)