首页 > 其他 > 详细

【剑指offer】Q17:合并两个排序的链表

时间:2014-07-08 18:45:43      阅读:359      评论:0      收藏:0      [点我收藏+]
def Merge(head1, head2):
	if head1 == None: return head2
	if head2 == None: return head1
	psuhead = ListNode(-1)
	tail = psuhead
	while head1 and head2:
		if head1.val < head2.val: 
			cur = head1
			head1 = head1.next
		else:
			cur = head2
			head2 = head2.next
		cur.next = tail.next
		tail.next = cur
		tail = cur
		Print(psuhead)
	# link the rest nodes
	if head1 == None: head1 = head2
	tail.next = head1
	head1 = psuhead.next
	del psuhead
	psuhead = None
	return head1

【剑指offer】Q17:合并两个排序的链表,布布扣,bubuko.com

【剑指offer】Q17:合并两个排序的链表

原文:http://blog.csdn.net/shiquxinkong/article/details/37327627

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