剑指 Offer 25. 合并两个排序的链表
题目:
思路:
递归,但是要注意:
// 刚开始比较后,直接将大的放在后面,这样是错误的,大的还要和小的 的 next进行比较。这样就麻烦了。
// 直接连接一次,直接返回head.next就行。后面无所谓。这样就不用考虑那么麻烦了。
代码:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode head;
if (l1 == null) {
return l2;
}
if (l2 == null) {
return l1;
}
if (l1.val > l2.val) {
head = l2;
head.next = mergeTwoLists(l1, l2.next);
} else{
head = l1;
head.next = mergeTwoLists(l1.next, l2);
}
return head;
}
}