当前位置: 首页 > article >正文

21. 合并两个有序链表(Java)

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

示例 1:
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]

示例 2:
输入:l1 = [], l2 = []
输出:[]

示例 3:
输入:l1 = [], l2 = [0]
输出:[0]

我的解法:

没有用递归,用的笨办法,创建了一个新的链表记录合并结果

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
        ListNode dummy = null, end = null;

        if (list1 == null && list2 == null){
            return dummy;
        } 
        else{
            dummy = new ListNode(0);
            end = dummy;
        }
        // if (list1 == null && list2 != null) return list2;
        // if (list1 != null && list2 == null) return list1;

        while (list1 != null && list2 != null){
            if (list1.val <= list2.val){
                end.next = list1;
                end = end.next;
                list1 = list1.next;
            }
            else{
                end.next = list2;
                end = end.next;
                list2 = list2.next;
            }
        }

        if (list1 == null) end.next = list2;
        if (list2 == null) end.next = list1;

        return dummy.next;
    }
}

// 没有用递归,用的笨办法,创建了一个新的链表记录合并结果

递归解法:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) {
            return l2;
        } else if (l2 == null) {
            return l1;
        } else if (l1.val < l2.val) {
            l1.next = mergeTwoLists(l1.next, l2);
            return l1;
        } else {
            l2.next = mergeTwoLists(l1, l2.next);
            return l2;
        }


    }
}

http://www.kler.cn/a/9513.html

相关文章:

  • Flink1.19编译并Standalone模式本地运行
  • 将Excel文件的两个表格经过验证后分别读取到Excel表和数据库
  • neo4j desktop基本入门
  • Appium配置2024.11.12
  • Springboot 启动端口占用如何解决
  • 深入探讨 MySQL 配置与优化:从零到生产环境的最佳实践20241112
  • 坦克大战第一阶段代码
  • 电子学会2023年3月青少年软件编程python等级考试试卷(一级)真题,含答案解析
  • 6、springboot快速使用
  • USB在虚拟机中不显示以及没有访问权限
  • C程序设计-小学生计算机教学辅助系统(四则运算)
  • 磁盘移臂调度算法
  • 【Bug解决】AttributeError: ‘DataParallel‘ object has no attribute ‘XXX‘
  • 【store商城项目08】删除用户的收获地址
  • 建龙转债上市价格预测 - 配了38张道氏,希望不要乱跌
  • unity--半圆包围posiotion
  • springboot+jwt令牌简单登录案例
  • 【校招VIP】南邮的计算机研究生面试,竟然说开发岗只是增删改查,而且项目QPS并发量数量过于吓人
  • Spring Security 6 的权限授权验证失败
  • node开通阿里云短信验证服务,代码演示 超级详细
  • 浅谈全局视角下的设计模式
  • VIM 编辑器使用教程
  • CMake入门教程【基础篇】4.target_include_directories包含指定文件夹头文件
  • 基于5G技术的智能导航机器人及AR巡逻应用开发项目实施方案(上)
  • linux 集群时间同步
  • 前端动态路由(前端控制全部路由,用户角色由后端返回)