码迷,mamicode.com
首页 > 其他好文 > 详细

Merge Two Sorted Lists (LL)

时间:2018-08-18 10:33:48      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:wol   merge   sort   public   else   lis   turn   div   sts   

 1 //10 ms
 2 class Solution {
 3     public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
 4         if(l1 == null) return l2;
 5         if(l2 == null) return l1;
 6         ListNode head = null;
 7         
 8         if(l1.val < l2.val) {
 9             head = l1;
10             head.next = mergeTwoLists(l1.next, l2);
11         }else {
12             head = l2;
13             head.next = mergeTwoLists(l1, l2.next);
14         }
15         return head;
16     }
17 }

 

Merge Two Sorted Lists (LL)

标签:wol   merge   sort   public   else   lis   turn   div   sts   

原文地址:https://www.cnblogs.com/goPanama/p/9495991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!