leetcode 206数据结构 链表

本文详细介绍了两种链表反转的方法,包括使用遍历和递归的实现方式。在遍历解法中,通过设置额外指针来辅助翻转链表,而在递归解法中,利用递归思想逐层反转链表节点。这两种方法都是解决链表问题的经典思路,有助于提升对链表操作的理解和编程技巧。
摘要由CSDN通过智能技术生成

遍历解法

当指针混乱时,设置新的遍历储存指针

# 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: ListNode) -> ListNode:
        pre = ListNode()
        pre.next = head
        cur = pre
        while head and head.next:
            head_next = head.next
            cur_next = cur.next
            cur.next = head.next
            head.next = head.next.next
            head_next.next = cur_next
        return pre.next

递归解法

动手画框框 递归的思想 想好停止条件 开始画过程

# 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: ListNode) -> ListNode:
        if not head or not head.next:
            return head
        cur = self.reverseList(head.next)
        head.next.next = head
        head.next = None
        return cur
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值