将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1==null&&l2==null){
return null;
}
if(l1==null){
return l2;
}
if(l2==null){
return l1;
}
ListNode a=l1;
ListNode b=l2;
ListNode c=new ListNode(-1);
ListNode d=c;
while(l1!=null&&l2!=null){
if(l1.val<l2.val){
d.next=l1;
l1=l1.next;
d=d.next;
}else{
d.next=l2;
l2=l2.next;
d=d.next;
}
}
if(l1!=null){
d.next=l1;
}else{
d.next=l2;
}
return c.next;
}
}