题目描述
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
思路
如果两个链表当中有一个为空链表,则直接返回另一个链表。
比较两个链表头节点的值,节点值较小的链表的头节点指向下一次合并的链表。
使用递归。
代码
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
public class MergingLists {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1 == null)
return l2;
else if(l2 == null)
return l1;
else if(l1.val > l2.val)
{
l2.next = mergeTwoLists(l1, l2.next);
return l2;
}
else
{
l1.next = mergeTwoLists(l1.next, l2);
return l1;
}
}
}