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

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

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

标签:algorithm   面试题   python   

可以练习下链表的逆置。

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:从尾到头打印链表

标签:algorithm   面试题   python   

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

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