题目
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例 1:
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
1
2
2
示例 2:
输入:l1 = [], l2 = []
输出:[]
1
2
2
示例 3:
输入:l1 = [], l2 = [0]
输出:[0]
1
2
2
提示:
- 两个链表的节点数目范围是
[0, 50]
-100 <= Node.val <= 100
l1
和l2
均按 非递减顺序 排列
题解
java
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
// 头节点
ListNode head = new ListNode(0);
// 游标节点
ListNode cursor = head;
// 同长度部分
while (Objects.nonNull(l1) && Objects.nonNull(l2)) {
if (l1.val > l2.val) {
cursor.next = new ListNode(l2.val);
l2 = l2.next;
} else {
cursor.next = new ListNode(l1.val);
l1 = l1.next;
}
cursor = cursor.next;
}
// l1多余l2的部分
while (Objects.nonNull(l1)) {
cursor.next = new ListNode(l1.val);
l1 = l1.next;
cursor = cursor.next;
}
// l2多余l1的部分
while (Objects.nonNull(l2)) {
cursor.next = new ListNode(l2.val);
l2 = l2.next;
cursor = cursor.next;
}
return head.next;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32