链表

#include <stdio.h>
struct node
{
    int data;
    struct node *next;
};
int main()
{
    struct node *p, *q, *head, *t;//p是临时指针 表示当前节点
    int n, i, a;
    scanf("%d",&n);
    head = NULL;//刚开始将头指针设为空
    for(i = 1; i <= n; i++)
    {
        scanf("%d",&a);
        p = (struct node *)malloc(sizeof(struct node));//临时申请空间
        p->data= a;
        p->next = NULL;
        if(head == NULL)//如果head是头指针则head指向第一个节点
            head = p;
        else
            q->next = p;//第一个节点的后继指针指向第二个节点
        q = p;//q刚开始指向第一个节点 第二次循环
    }
    t = head;
    scanf("%d",&a);
    while(t!=NULL)
    {
        if(t->next->data>a)
        {
            p = (struct node*)malloc(sizeof(struct node));
                p->data= a;
            p->next = t->next;
            t->next = p;
            break;
        }    
        //printf("%d ",t->data);
        t = t->next;    
    }
    t = head;
    while(t!=NULL)
    {
        printf("%d ",t->data);
        t = t->next;
    }
return 0;
}

 

全部评论

相关推荐

上了几个月班,对工作还是不是太了解,今天被带我的人说了,说我干活慢,还要别人帮我,但是事情确实太多有时候全都一起来干不赢,有没有跟我一样的,希望听听大家的建议
小火柴燃烧吧:如果是互联网的话,现在越来越卷了,你如果不主动去学习了解,领导可能就会感觉你态度有问题,我刚入职考个试成绩不好,领导直接就把我裁了。没办法,现在的风气就是这样,你不当牛马,多的是牛马
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务