单链表插入排序

代码自己实现过一遍就是有更加深入的理解:

node* insert_sort()
{
    int data = 0;
    int i = 0;
    node *head, *Cur, *Pre, *New;
    head = (node*)malloc(sizeof(node));
    while(1)
    {
        printf("Please input the data: ");
        scanf("%d", &data);
        if(data == 0)
            break;

        New = (struct node*)malloc(sizeof(struct node));
        Pre = (struct node*)malloc(sizeof(struct node));
        Cur = (struct node*)malloc(sizeof(struct node));
        New->data = data;                           // 新分配一个node节点
        New->next = NULL;

        if(++i == 1)
        {
            head->next = New;
            continue;
        }

        if(head->next->data >= New->data)
        {
            New->next = head->next;
            head->next = New;
            continue;
        }
        Cur = head->next;
        while(New->data > Cur->data && Cur->next != NULL)
        {
            Pre = Cur;
            Cur = Cur->next;
        }
        if(Cur->data >= New->data)
        {
            Pre->next = New;
            New->next = Cur;
        }
        else
        {
            Cur->next = New;
        }
    }
    return head;
}

上文中head节点初始化,其他节点的初始化是很重要的问题。
未初始化很容易出现debug版本没问题,而release版本不通过的现象。
同时注意到head节点是空节点,并不是头结点,所以要小心处理有关head节点的情况

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值