Bootstrap

leetcode 21 合并两个有序链表

题目

https://leetcode.cn/problems/merge-two-sorted-lists/description/

将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例 1:
输入:l1 =[1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
示例 2:
输入:l1 = [], l2 = []
输出:[]
示例 3:
输入:l1 = [], l2 = [0]
输出:[0]

解答

思路:创建一个新的头结点,2个指针分别遍历两个链表,那个数值小,就创建一个新节点。最后将2个链表的剩余元素直接链接在最后即可。

class Solution {
    public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
        ListNode dummy = new ListNode();
        ListNode curr = dummy;
        while (list1 != null && list2 != null) {
            if (list1.val < list2.val) {
                curr.next = new ListNode(list1.val);
                list1 = list1.next;
            } else {
                curr.next = new ListNode(list2.val);
                list2 = list2.next;
            }
            curr = curr.next;
        }
        // 
        if (list1 == null) {
            curr.next = list2;
        } else {
            curr.next = list1;
        }
        return dummy.next;     
    }
}

复杂度分析:假设两个链表的长度分别为m和n,则时间复杂度为O(m+n),空间复杂度也为O(m+n)。

;