注意,可能存在空链表
使用头节点数值小的作为需返回的链表
将另外一个链表的节点加入需返回的链表
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1 == null) return l2;
if(l2 == null) return l1;
if(l1.val > l2.val){
ListNode item = l1;
l1 = l2;
l2 = item;
}
ListNode head = l1;
while(l1.next != null && l2 != null){
if(l2.val < l1.next.val){
ListNode item = l1.next;
l1.next = l2;
l2 = l2.next;
l1.next.next = item;
}
l1 = l1.next;
}
if(l1.next == null) l1.next = l2;
return head;
}
}