首页 > 其他 > 详细

LeetCode | Merge Two Sorted Lists

时间:2014-03-16 01:02:37      阅读:486      评论: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.

分析

这种题就是争取一次bugfree了,另外,链表的题一般都要考虑下需不需要用个哨兵简化代码。

代码

public class MergeTwoSortedLists {
	public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
		ListNode dummy = new ListNode(0);
		ListNode p = dummy;
		while (l1 != null && l2 != null) {
			if (l1.val < l2.val) {
				p.next = l1;
				l1 = l1.next;
			} else {
				p.next = l2;
				l2 = l2.next;
			}
			p = p.next;
		}
		if (l1 == null) {
			p.next = l2;
		} else {
			p.next = l1;
		}
		return dummy.next;
	}
}

LeetCode | Merge Two Sorted Lists,布布扣,bubuko.com

LeetCode | Merge Two Sorted Lists

原文:http://blog.csdn.net/perfect8886/article/details/21276153

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