反转链表-链表206-python&c++

这篇博客介绍了如何使用迭代和递归两种方法来反转单链表。在迭代法中,通过设置前驱节点、当前节点和临时节点,逐步调整节点的next指针实现反转。而在递归法中,递归直到找到链表末尾,然后在返回过程中逐级反转节点。两种方法的时间复杂度均为O(n),空间复杂度为O(1)。
摘要由CSDN通过智能技术生成

解题思路

迭代:

在这里插入图片描述
在这里插入图片描述

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):
        pre = None
        cur = head
        while cur:
            temp = cur.next
            cur.next = pre
            pre = cur
            cur = temp
        return pre

C++

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode * curr = head;
        ListNode * pre = nullptr;
        ListNode * temp = curr;
        while(curr){
            curr = curr->next;
            temp->next = pre;
            pre = temp;
            temp = curr;
        }
        return pre;
    }
};

复杂度分析:

  • 时间复杂度:O(n),其中 n 是链表的长度。需要遍历链表一次;
  • 空间复杂度:O(1)。

递归

  • 使用递归函数,一直递归到链表的最后一个结点,该结点就是反转后的头结点,记作pre。
  • 此后,每次函数在返回的过程中,让head结点的下一个结点的next指针指向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: ListNode) -> ListNode:
        if not head or not head.next:
            return head       

        pre = self.reverseList(head.next)
        head.next.next = head
        head.next = None

        return pre

c++

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        if (head == nullptr || head->next == nullptr) {
            return head;
        }

        ListNode* last = reverseList(head->next);
        head->next->next = head;
        head->next = nullptr;

        return last;
    }
};
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值