题目:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/6/linked-list/44/
题目描述:
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4 输出:1->1->2->3->4->4
思路:递归法: 首先判断是否为空链表。返回相应的指。之后判断大小,小的放到temp中,temp.next递归函数。递归函数作用就是每次比较都能把小的那个先放入到temp链表后面。
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
if(l1==null)
return l2;
if(l2==null)
return l1;
ListNode temp;
if(l1.val<l2.val){
temp = l1;
temp.next=mergeTwoLists(l1.next,l2);
}else{
temp = l2;
temp.next=mergeTwoLists(l1,l2.next);
}
return temp;
}
}