链表C 链表的结点插入

来源:互联网 发布:手机淘宝怎么修改价格 编辑:程序博客网 时间:2024/06/05 06:07

Problem Description
给出一个只有头指针的链表和 n 次操作,每次操作为在链表的第 m 个元素后面插入一个新元素x。若m 大于链表的元素总数则将x放在链表的最后。
Input
多组输入。每组数据首先输入一个整数n(n∈[1,100]),代表有n次操作。
接下来的n行,每行有两个整数Mi(Mi∈[0,10000]),Xi。
Output
对于每组数据。从前到后输出链表的所有元素,两个元素之间用空格隔开。
Example Input
4
1 1
1 2
0 3
100 4
Example Output
3 1 2 4

#include <stdio.h>#include <stdlib.h>struct node{    int data;    struct node *next;};int len;void insert(struct node *head, int m, int x){    struct node *p, *q;    int i;    p = head;    for(i=0; i<m&&i<len; i++)   //遍历到m元素    {        p = p->next;    }    q = (struct node *)malloc(sizeof(struct node));    q->data = x;    q->next = p->next;    p->next = q;    len++;}void show(struct node *head){    struct node *p;    p = head->next;    printf("%d", p->data);    p = p->next;    while(p!=NULL)  //如果不知道确切的个数n,就用while条件来判断    {        printf(" %d",p->data);        p = p->next;    }    printf("\n");}int main(){    int n,i,m,x;    while(~scanf("%d",&n))    {        struct node *head;        head = (struct node *)malloc(sizeof(struct node));        head->next = NULL;        len=0;        for(i=0; i<n; i++)        {            scanf("%d %d",&m,&x);            insert(head,m,x);        }        show(head);    }    return 0;}
原创粉丝点击