【算法】合并两个有序链表

本题来源---《合并两个有序链表

题目描述

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

示例 1:

复制代码
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{

}

解题思路:

我做这道题的核心思路就是,创建一个新链表,然后依次往里放。

代码如下:

(大家对着图进行分析,效果应该会更好)

复制代码
struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2)
{
    struct ListNode      *head ,*tail;
    struct ListNode      *l1 = list1;
    struct ListNode      *l2 = list2;

    head = tail = (struct ListNode *)malloc(sizeof(struct ListNode));

    if( !list1 )
    {
        return list2;
    }

    if( !list2 )
    {
        return list1;
    }

    while( l1 && l2 )
    {
        if( l1->val <= l2->val )
        {
            tail->next = l1;
            tail = tail->next;
            l1 = l1->next;
            tail->next = NULL;
        }
        else
        {
            tail->next = l2;
            tail = tail->next;
            l2 = l2->next;
            tail->next = NULL;
        }
    }

    if( l1 )
    {
        tail->next = l1;
    }

    if( l2 )
    {
        tail->next = l2;
    }

    return head->next;
}
相关推荐
洋次郎的歌42 分钟前
我要成为数据结构与算法高手(三)之双向循环链表
数据结构
罗西的思考2 小时前
[2W字长文] 探秘Transformer系列之(23)--- 长度外推
人工智能·算法
算AI20 小时前
人工智能+牙科:临床应用中的几个问题
人工智能·算法
我不会编程55521 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
owde1 天前
顺序容器 -list双向链表
数据结构·c++·链表·list
第404块砖头1 天前
分享宝藏之List转Markdown
数据结构·list
hyshhhh1 天前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
蒙奇D索大1 天前
【数据结构】第六章启航:图论入门——从零掌握有向图、无向图与简单图
c语言·数据结构·考研·改行学it
A旧城以西1 天前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea
杉之1 天前
选择排序笔记
java·算法·排序算法