LeetCode笔记——21合并两个有序链表

题目:

将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 

示例:

输入:1->2->4, 1->3->4
输出:1->1->2->3->4->4

思路:这道题是关于链表的题,链表 对象相关操作还是不怎么熟悉。。。首先判断两者是否为空,返回不为空的那一个链表。然后依次比较两个链表对应位置的值,取最小值赋给tem;之后递归调用函数。

代码:

class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        ListNode tem;
      if(l1==null)
          return l2;
      if(l2==null)
          return l1;
      if(l1.val       {
         // ListNode tem=l1;
          tem=l1;
          tem.next=mergeTwoLists(l1.next,l2);
         // return tem;
      }
        else
        {
            //ListNode tem=l2;
            tem=l2;
            tem.next=mergeTwoLists(l1,l2.next);
           // return tem;
        }
        return tem;
    }
}

执行时间最快的用例。基本思路与上面是一致的

class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) return l2;
        if (l2 == null) return l1;

        ListNode head = null;
        if (l1.val <= l2.val){
            head = l1;
            head.next = mergeTwoLists(l1.next, l2);
        } else {
            head = l2;
            head.next = mergeTwoLists(l2.next, l1);
        }
        return head;
    }
}

你可能感兴趣的:(LeetCode笔记)