输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}
递归
public class Solution {
public ListNode Merge(ListNode list1,ListNode list2) {
if(list1==null)
return list2;
if(list2==null)
return list1;
ListNode res=null;
if(list1.val<list2.val)
{
res=list1;
list1.next=Merge(list1.next,list2);
}
else
{
res=list2;
list2.next=Merge(list1,list2.next);
}
return res;
}
}
非递归
public class Solution {
public ListNode Merge(ListNode list1,ListNode list2) {
if(list1==null)
return list2;
if(list2==null)
return list1;
ListNode curnode=null;
ListNode newnode=null;
while(list1!=null&&list2!=null)
{
if(list1.val<list2.val)
{
if(newnode==null)
{
curnode=list1;
newnode=curnode;
}
else
{
curnode.next=list1;
curnode=curnode.next;
}
list1=list1.next;
}
else
{
if(newnode==null)
{
curnode=list2;
newnode=curnode;
}
else
{
curnode.next=list2;
curnode=curnode.next;
}
list2=list2.next;
}
}
if(list1==null)
{
curnode.next=list2;
}
else
{
curnode.next=list1;
}
return newnode;
}
}