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

21--Merge Two Sorted Lists

时间:2019-09-03 22:16:49      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:style   ext   pre   span   nbsp   迭代   ted   null   color   

public class MergeTwoSortedLists {
    /*
    解法一:迭代
     */
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1==null)
            return l2;
        if (l2==null)
            return l1;
        ListNode first=new ListNode(-1);
        ListNode temp=first;
        while (l1!=null&&l2!=null){
            if (l1.val<=l2.val){
                temp.next=l1;
                l1=l1.next;
            }else {
                temp.next=l2;
                l2=l2.next;
            }
            temp= temp.next;
        }
        temp.next=l2==null?l1:l2;
        return first.next;
    }
    /*
    解法二:递归
     */
    public ListNode mergeTwoLists2(ListNode l1, ListNode l2) {
        if (l1==null)
            return l2;
        if (l2==null)
            return l1;
        if (l1.val<=l2.val){
            l1.next=mergeTwoLists(l1.next,l2);
            return l1;
        }else {
            l2.next=mergeTwoLists(l1,l2.next);
            return  l2;
        }
    }
}

 

21--Merge Two Sorted Lists

标签:style   ext   pre   span   nbsp   迭代   ted   null   color   

原文地址:https://www.cnblogs.com/zhangyuhao/p/11455622.html

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