【LeetCode】21. 合并两个有序链表

文章提供了两种方法来合并两个已排序的链表,一种不使用哨兵节点的尾部插入法,另一种则是利用哨兵节点简化处理。在每种方案中,都通过比较链表节点的值来决定插入顺序,确保新链表保持升序。最后,处理剩余的链表节点以完成合并。
摘要由CSDN通过智能技术生成

题目链接:https://leetcode.cn/problems/merge-two-sorted-lists/description/

📕题目要求:

将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 


🧠解题思路  

方案一:不带哨兵位的尾插

 方案二:带哨兵位的尾插


 🍭代码示例

方案一代码示例如下:

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{
    struct ListNode* head = NULL;
    struct ListNode* cur = NULL;
    if(list1==NULL)
    {
        return list2;
    }
    if(list2==NULL)
    {
        return list1;
    }
    while(list1!=NULL&&list2!=NULL)
    {
        if(list1->val<list2->val)
        {
            if(cur==NULL)
            {
                head =  cur = list1;
            }
            else
            {
                cur->next = list1;
                cur = cur->next;
            }
            list1 = list1->next;
        }
        else
        {
            if(cur == NULL)
            {
                head = cur = list2;
            }
            else
            {
                cur->next = list2;
                cur = cur->next;
            }
            list2 = list2->next;
        }
    }
    if(list1==NULL)
    {
        cur->next = list2;
    }
    if(list2==NULL)
    {
        cur->next = list1;
    }
    return head;
}

方案二代码示例如下:

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{
    struct ListNode* head = (struct ListNode*)malloc(sizeof(struct ListNode));
    struct ListNode* cur = head;
    if(list1==NULL)
    {
        return list2;
    }
    if(list2==NULL)
    {
        return list1;
    }
    while(list1&&list2)
    {
        if(list1->val<list2->val)
        {
            cur->next = list1;
            cur = cur->next;
            list1 = list1->next;
        }
        else
        {
            cur->next = list2;
            cur = cur->next;
            list2 = list2->next;
        }
    }
    if(list1==NULL)
    {
        cur->next = list2;
    }
    if(list2==NULL)
    {
        cur->next = list1;
    }
    struct ListNode* del = head;
    head = head->next;
    free(del);
    return head;
}

这就是我对本题的理解,如果大家有更优的解,欢迎交流,一起进步!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值