一、题目
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例 1:
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
示例 2:
输入:l1 = [], l2 = []
输出:[]
示例 3:
输入:l1 = [], l2 = [0]
输出:[0]
提示:
两个链表的节点数目范围是 [0, 50]
-100 <= Node.val <= 100
l1 和 l2 均按 非递减顺序 排列
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/merge-two-sorted-lists
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
二、代码实现
1)迭代
代码优化
在第一次写这个代码时,我采用了while(l1!=null) { curr=curr.next=l1; l1=l1.next; } while(l2!=null) { curr=curr.next=l2; l2=l2.next; }
,后来参考了官方答案,发现自己不仅代码写的复杂了,而且时间复杂度也会有所降低。因为对于链表并不需要一个元素一个元素的加上去,在这种情况下可以直接把后面没有加的一整条链表直接添在后面即可。
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode anslist = new ListNode(0);
ListNode curr=anslist;
while (l1 != null && l2 != null) {
if (l1.val <= l2.val) {
curr=curr.next = l1;
l1 = l1.next;
} else {
curr=curr.next = l2;
l2 = l2.next;
}
}
/*
* while(l1!=null) { curr=curr.next=l1; l1=l1.next; } while(l2!=null) {
* curr=curr.next=l2; l2=l2.next; }
*/
curr=curr.next=l1==null?l2:l1;
return anslist.next;
}
}
2)递归
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if (l1 == null && l2 == null)
return null;
if (l1 != null && l2 != null) {
if (l1.val <= l2.val) {
l1.next = mergeTwoLists(l1.next, l2);
return l1;
} else {
l2.next = mergeTwoLists(l1, l2.next);
return l2;
}
}
if (l1 == null)
return l2;
return l1;
}
}
优化:在判断两个参数是否为null时,其实是可以合并在一起判断的,最好不要连续if,在这种情况下使用if else可读性会更强
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if (l1 == null)
return l2;
else if (l2 == null)
return l1;
else if (l1.val <= l2.val) {
l1.next = mergeTwoLists(l1.next, l2);
return l1;
} else {
l2.next = mergeTwoLists(l1, l2.next);
return l2;
}
}
}