LeetCode 21.合并两个有序链表

LeetCode 21.合并两个有序链表_第1张图片

文章目录

  • 题目分析
  • 解题思路
    • 思路1: 归并排序思想(不使用带哨兵卫的头节点)
    • 接口源码:
  • 解题思路
    • 思路2: 归并排序思想(使用带哨兵卫的头节点)
    • 接口源码:

在这里插入图片描述
题目链接 LeetCode 21.合并两个有序链表

题目分析

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

LeetCode 21.合并两个有序链表_第2张图片
LeetCode 21.合并两个有序链表_第3张图片
LeetCode 21.合并两个有序链表_第4张图片

解题思路

思路1: 归并排序思想(不使用带哨兵卫的头节点)

取小的进行尾插

图解

LeetCode 21.合并两个有序链表_第5张图片

接口源码:

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{
	//考虑list1和list2其中一个为空的情况
    if (list1 == NULL)
    {
        return list2;
    }
    if (list2 == NULL)
    {
        return list1;
    }

    struct ListNode* head = NULL, * tail = NULL;
    
    //当list1和list2任意一个为空循环就结束
    while (list1 && list2)
    {
        if (list1->val < list2->val)
        {
            if (tail == NULL)
            {
                head = tail = list1;
            }
            else
            {
                tail->next = list1;
                tail = tail->next;
            }

            list1 = list1->next;
        }
        else
        {
            if (tail == NULL)
            {
                head = tail = list2;
            }
            else
            {
                tail->next = list2;
                tail = tail->next;
            }

            list2 = list2->next;
        }
        
		//如果list1没空则把list1后面剩下的数据直接链接到tail->next的后面
        if (list1)
        {
            tail->next = list1;
        }
        //如果list2没空则把list2后面剩下的数据直接链接到tail->next的后面
        if (list2)
        {
            tail->next = list2;
        }
    }

    return head;
}

解题思路

思路2: 归并排序思想(使用带哨兵卫的头节点)

取小的进行尾插

图解
LeetCode 21.合并两个有序链表_第6张图片

接口源码:

struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{
	//考虑list1和list2其中一个为空的情况
    if (list1 == NULL)
    {
        return list2;
    }
    if (list2 == NULL)
    {
        return list1;
    }

    struct ListNode* head = NULL, * tail = NULL;
    //带哨兵卫的头节点,这个头节点不存储有效数据
    head = tail = (struct ListNode*)malloc(sizeof(struct ListNode));
	
	//当list1和list2任意一个为空循环就结束
    while (list1 && list2)
    {
        if (list1->val < list2->val)
        {
            tail->next = list1;
            tail = tail->next;
            list1 = list1->next;
        }
        else
        {
            tail->next = list2;
            tail = tail->next;
            list2 = list2->next;
        }
    }
	
	//如果list1没空则把list1后面剩下的数据直接链接到tail->next的后面
    if (list1)
    {
        tail->next = list1;
    }
    //如果list2没空则把list2后面剩下的数据直接链接到tail->next的后面
    if (list2)
    {
        tail->next = list2;
    }
	
	//在前面malloc的空间需要释放,释放前先保存head->next的地址
    struct ListNode* del = head;
    head = head->next;
    free(del);

    return head;
}

LeetCode 21.合并两个有序链表_第7张图片
希望烙铁们能够理解欧!

总结
以上就是本题讲解的全部内容啦
本文章所在【C/C++刷题系列】专栏,感兴趣的烙铁可以订阅本专栏哦
前途很远,也很暗,但是不要怕,不怕的人面前才有路。
小的会继续学习,继续努力带来更好的作品
创作写文不易,还多请各位大佬uu们多多支持哦

请添加图片描述

你可能感兴趣的:(C/C++刷题系列,leetcode,链表,算法,c语言,数据结构)