首页 > 其他 > 详细

Leet Code OJ 21. Merge Two Sorted Lists [Difficulty: Easy]

时间:2016-03-04 17:48:07      阅读:169      评论:0      收藏:0      [点我收藏+]

题目:
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

翻译:
合并2个已经排序的链表,并且返回一个新的链表。这个新的链表应该由前面提到的2个链表的节点所组成。

分析:
注意头节点的处理,和链表结束(next为null)的处理。以下代码新增了一个头指针,来把头节点的处理和普通节点的处理统一了。

代码:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        ListNode head=new ListNode(0);
        ListNode currentNode=head;
        while(true){
            if(l1==null&&l2==null){
                break;
            }else if(l2!=null&&(l1==null||l1.val>l2.val)){
                currentNode.next=l2;
                l2=l2.next;
            }else{
                currentNode.next=l1;
                l1=l1.next;
            }
            currentNode=currentNode.next;
        }
        return head.next;
    }
}

Leet Code OJ 21. Merge Two Sorted Lists [Difficulty: Easy]

原文:http://blog.csdn.net/lnho2015/article/details/50801842

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!