[LeetCode-Python版]206. 反转链表(迭代+递归两种解法)

题目

给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。

示例 1:

输入:head = [1,2,3,4,5]

输出:[5,4,3,2,1]

示例 2:

输入:head = [1,2]

输出:[2,1]

示例 3:

输入:head = []

输出:[]

提示:

  • 链表中节点的数目范围是 [0, 5000]
  • -5000 <= Node.val <= 5000

题目链接

我的思路

定义cur指向当前节点,pre指向倒序链表,每次将当前节点的next指向pre
重点是每次要记录cur原来的next节点,否则就找不到了

我的代码

python 复制代码
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:
        pre = None
        cur = head

        while cur:
            tmp = cur.next
            cur.next = pre
            pre = cur
            cur = tmp 
        return pre

注意 :最后要返回pre而不是cur

题解思路

这道题还可以用递归做

把原问题转化成解决第一个节点怎么翻转的问题,不考虑里面的节点


递归过程

  • head是我们要进行翻转的节点,head.next是已经翻转好的剩余节点
  • 那么只需要把剩余节点的next指向head,即head.next.next=head
  • 如果head是最后一个节点,那么要把head.next置为None

终止条件:如果只有一个节点,就返回那个节点

参考代码

python 复制代码
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:
        if not head or not head.next: return head

        tmp = self.reverseList(head.next)
        head.next.next = head
        head.next = None
        return tmp
        

ps

链表类题目先画图理解再做题更好做

相关推荐
悄悄敲敲敲30 分钟前
C++:bfs解决多源最短路与拓扑排序问题习题
算法·宽度优先
Tester_孙大壮30 分钟前
第13章:Python TDD完善货币加法运算(二)
开发语言·python
会蹦的鱼36 分钟前
算法4(力扣206)-反转链表
算法·leetcode·链表
黄雪超39 分钟前
数据结构与算法面试专题——引入及归并排序
数据结构·算法·面试
蹦蹦跳跳真可爱5891 小时前
Python----Python高级(面向对象:对象,类,属性,方法)
开发语言·python
曲奇是块小饼干_1 小时前
leetcode刷题记录(四十八)——128. 最长连续序列
java·算法·leetcode·职场和发展
adam_life1 小时前
http://noi.openjudge.cn/——4.7算法之搜索——【169:The Buses】
算法·回溯·递归深搜·线路判断
mnwl12_02 小时前
python轻量级框架-flask
开发语言·python·flask
张小特2 小时前
flask项目中使用schedule定时任务案例
后端·python·flask
gf13211112 小时前
python_在钉钉群@人员发送消息
android·python·钉钉