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

反转链表 leetcode206

时间:2020-06-02 18:34:06      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:elf   tps   python   lin   sel   str   def   next   nod   

反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL

双指针迭代

我们可以申请两个指针,第一个指针叫 pre,最初是指向 null 的。
第二个指针 cur 指向 head,然后不断遍历 cur。
每次迭代到 cur,都将 cur 的 next 指向 pre,然后 pre 和 cur 前进一位。
都迭代完了(cur 变成 null 了),pre 就是最后一个节点了。

动画演示如下:
技术图片

代码如下:

class Solution(object):
	def reverseList(self, head):
		"""
		:type head: ListNode
		:rtype: ListNode
		"""
		# 申请两个节点,pre和 cur,pre指向None
		pre = None
		cur = head
		# 遍历链表,while循环里面的内容其实可以写成一行
		# 这里只做演示,就不搞那么骚气的写法了
		while cur:
			# 记录当前节点的下一个节点
			tmp = cur.next
			# 然后将当前节点指向pre
			cur.next = pre
			# pre和cur节点都前进一位
			pre = cur
			cur = tmp
		return pre	

参考:
https://leetcode-cn.com/problems/reverse-linked-list/

反转链表 leetcode206

标签:elf   tps   python   lin   sel   str   def   next   nod   

原文地址:https://www.cnblogs.com/keithtt/p/13032738.html

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