栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

合并两个有序链表

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

合并两个有序链表

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){

    //依次从头开始比较链表1和链表2的元素,小的头插到新链表中去

    //定义一个尾节点,方便尾插

    if(list1 == NULL)

        return list2;

    if(list2 == NULL)

        return list1;    

    struct ListNode* newhead = NULL;

    struct ListNode* tail = NULL;

    while(list1 && list2)

    {

        if(list1->val <= list2->val)

        {

            if(tail == NULL)//如果初始是NULL,那么直接赋值;

            {

                newhead = list1;

                tail = list1;

            }

            else

            {

                tail->next = list1;

                tail = tail->next;

            }

            list1 = list1->next;

        } 

        else

        {

            if(tail == NULL)

            {

                newhead = list2;

                tail = list2;

            }

            else

            {

                tail->next = list2;

                tail = tail->next;

            }

            list2 = list2->next;

        }

    }

    if(list1)//这里看看哪个链表还没有比较结束,就直接尾插到新链表的后面

        tail->next = list1;

    if(list2)    

        tail->next = list2;

    return newhead; 

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/873431.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号