LeetCode-206. 反转链表 -- Python解

LeetCode-206. 反转链表 -- Python解,第1张

给你单链表的头节点 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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

对于这类题,多练习就 ok,就是一些参数的交换
class Solution:
    def reverseList(self, head: ListNode) -> ListNode:
        pre = None
        while head:
            head_next = head.next
            head.next = pre
            pre = head
            head = head_next
        return pre

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/756794.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-30
下一篇 2022-04-30

发表评论

登录后才能评论

评论列表(0条)

保存