[3]合并两个有序链表

这篇博客介绍了如何使用Java编程语言,通过迭代和递归两种方法来合并两个已排序的链表。在迭代法中,创建新的链表并逐个比较节点值以确定合并顺序;在递归法中,通过递归调用来合并链表,直到其中一个链表为空。两种方法都确保了合并后的链表仍然有序。
摘要由CSDN通过智能技术生成

[3]合并两个有序链表

A.迭代法

a.图解

请添加图片描述

b.源码
/*
 * @lc app=leetcode.cn id=21 lang=java
 *
 * [21] 合并两个有序链表
 */

// @lc code=start
/**
 * 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 res = new ListNode();
        ListNode cur = res;
        while (list1 != null && list2 != null) {
            if (list1.val <= list2.val) {
                cur.next = list1;
                list1 = list1.next;// 已经确认好一个数,挪到list1的下一个数
            } else {
                cur.next = list2;
                list2 = list2.next;
            }
            cur = cur.next;// 每一次while循环都确定了一个最小的数,确定好的值留下然后再确定下一个值
        }
        if (list1 == null) {// list2可能有剩余
            cur.next = list2;
        }
        if (list2 == null) {// list1可能有剩余
            cur.next = list1;
        }
        return res.next;
    }
}
// @lc code=end

B.递归法

a.图解

请添加图片描述

b.源码
/*
 * @lc app=leetcode.cn id=21 lang=java
 *
 * [21] 合并两个有序链表
 */

// @lc code=start
/**
 * 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) {
        if (list1 == null || list2 == null) {
            return list1 = null ? list2 : list1;
        }
        if (list1.val <= list2.val) {
            list1.next = mergeTwoLists(list1.next, list2);
            return list1;
        } else {
            list2.next = mergeTwoLists(list1, list2.next);
            return list2;
        }
    }
}
// @lc code=end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值