合并两个有序链表
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例 1:
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
1
2
2
# 解法:迭代
var mergeTwoLists = function(l1, l2) {
let res = new ListNode(0, null)
let cur = res
while (l1 && l2) {
if (l1.val <= l2.val) {
cur.next = l1
l1 = l1.next
} else {
cur.next = l2
l2 = l2.next
}
cur = cur.next
}
cur.next = l1 ? l1 : (l2 ? l2 : null)
return res.next
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/merge-two-sorted-lists