将两个升序链表合并为一个新的升序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-two-sorted-lists
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
题解:
一:创建虚拟头节点,从头到尾遍历, 拼接两个链表中较小值。
代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode newNode = new ListNode(-1);
ListNode curNode = newNode;
while (l1 != null || l2 != null){
if (l1 == null){
curNode.next = l2;
break;
}
if (l2 == null){
curNode.next = l1;
break;
}
if (l1.val <= l2.val){
curNode.next = l1;
l1 = l1.next;
}else {
curNode.next = l2;
l2 = l2.next;
}
curNode = curNode.next;
}
return newNode.next;
}
|
时间复杂度:O(N)
空间复杂度:O(1)
二,递归
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1 == null) return l2;
if(l2 == null) return l1;
ListNode currentNode = l1.val <= l2.val ? l1 : l2;
if(l1.val <= l2.val){
l1.next = mergeTwoLists(l1.next,l2);
return l1;
}else{
l2.next = mergeTwoLists(l1,l2.next);
return l2;
}
}
|