合并两个有序链表
题目:合并两个有序链表
输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。
比较两个链表的首结点,哪个小的的结点则合并到第三个链表尾结点,并向前移动一个结点。
结果会有一个链表先遍历结束,或者没有
第三个链表尾结点指向剩余未遍历结束的链表
返回第三个链表首结点
public class Solution {
public ListNode Merge(ListNode list1,ListNode list2) {
if(list1==null&&list2==null){
return null;
}
if(list1==null){
return list2;
}
if(list2==null){
return list1;
}
ListNode cur=new ListNode(-1);
cur.next=null;
ListNode head=cur;
while(list1!=null&&list2!=null){
if(list1.val<=list2.val){
cur.next=list1;
cur=cur.next;
list1=list1.next;
}else{
cur.next=list2;
cur=cur.next;
list2=list2.next;
}
}
if(list1!=null){
cur.next=list1;
}
if(list2!=null){
cur.next=list2;
}
return head.next;
}
}