leetcode:21. 合并两个有序链表

一、题目

 

函数原型:

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

二、思路

合并两个有序链表为一个新的升序链表,只需要遍历两个有序链表并比较结点值大小,依次将较小的结点尾插到新链表即可。

三、代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
    struct ListNode *newhead=NULL;//新链表
    struct ListNode *tail=NULL;//新链表尾指针
    struct ListNode *cur1=list1;//遍历指针1
    struct ListNode *cur2=list2;//遍历指针2

    while(cur1&&cur2)
    {
        if(cur1->val<=cur2->val)//选取较小结点尾插
        {
            if(tail==NULL)//尾指针为空,先要将插入的结点作为头结点
            {
                newhead=tail=cur1;
            }
            else
            {
                tail->next=cur1;
                tail=cur1;
            }
            cur1=cur1->next;
        }
        else
        {
            if(tail==NULL)
            {
                newhead=tail=cur2;//尾指针为空,先要将插入的结点作为头结点
            }
            else
            {
                tail->next=cur2;
                tail=cur2;
            }
            cur2=cur2->next;
        }
    }

    if(cur1)//链表1还有剩余结点,尾插到新链表
    {
        if(tail==NULL)
        {
            newhead=tail=cur1;
        }
        else
        {
            tail->next=cur1;
        }
    }
    if(cur2)//链表2还有剩余结点,尾插到新链表中
    {
        if(tail==NULL)
        {
            newhead=tail=cur2;
        }
        else
        {
            tail->next=cur2;
        }
    }
    return newhead;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

南林yan

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值