首页 > 其他 > 详细

【剑指offer】Q5:从尾到头打印链表

时间:2014-07-06 09:29:37      阅读:336      评论:0      收藏:0      [点我收藏+]

可以练习下链表的逆置。

def PrintListReversingly(head):
	if head == None:
		return
	if head:
		PrintListReversingly(head.next)
	print head.val


def reverse(head):
	if head == None or head.next == None:
		return head
	psuhead = ListNode(-1)
	while head:
		nexthead = head.next
		head.next = psuhead.next
		psuhead.next = head
		head = nexthead
	head = psuhead.next
	del psuhead
	return head


【剑指offer】Q5:从尾到头打印链表,布布扣,bubuko.com

【剑指offer】Q5:从尾到头打印链表

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

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