牛客网 | 高频面试题 | 反转链表

1 题目

反转链表_牛客网

题目描述
	输入一个链表,反转链表后,输出新链表的表头。
示例1
	输入
		{1,2,3}
	返回值
		{3,2,1}

博客图片来自于,本系列博客仅为记录自己的刷题
剑指 Offer 24. 反转链表(迭代 / 递归,清晰图解) - 反转链表 - 力扣(LeetCode)

2 解析

在这里插入图片描述

2.1 迭代

考虑遍历链表,并在访问各节点时修改 next 引用指向,算法流程见注释。

  • 复杂度分析:
    时间复杂度 O(N)O(N) : 遍历链表使用线性大小时间。
    空间复杂度 O(1)O(1) : 变量 pre 和 cur 使用常数大小额外空间。

  • 初始化
    在这里插入图片描述

  • 每次循环的操作
    在这里插入图片描述

/*
struct ListNode {
	int val;
	struct ListNode *next;
	ListNode(int x) :
			val(x), next(NULL) {
	}
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {
        ListNode *res=nullptr,*cur=pHead;
        while(cur!=nullptr){
            ListNode *tmp=cur->next;
            cur->next=res;
            res=cur;
            cur=tmp;
        }
        return res;
    }
};

2.2 迭代

考虑使用递归法遍历链表,当越过尾节点后终止递归,在回溯时修改各节点的 next 引用指向。

  • recur(cur, pre) 递归函数:
    终止条件:当 cur 为空,则返回尾节点 pre (即反转链表的头节点);
    递归后继节点,记录返回值(即反转链表的头节点)为 res ;
    修改当前节点 cur 引用指向前驱节点 pre ;
    返回反转链表的头节点 res ;

  • reverseList(head) 函数:
    调用并返回 recur(head, null) 。传入 null 是因为反转链表后, head 节点指向 null ;

  • 复杂度分析:
    时间复杂度 O(N)O(N) : 遍历链表使用线性大小时间。
    空间复杂度 O(N)O(N) : 遍历链表的递归深度达到 NN ,系统使用 O(N)O(N) 大小额外空间。
    在这里插入图片描述

在这里插入图片描述

class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        return recur(head, nullptr);           // 调用递归并返回
    }
private:
    ListNode* recur(ListNode* cur, ListNode* pre) {
        if (cur == nullptr) return pre;        // 终止条件
        ListNode* res = recur(cur->next, cur); // 递归后继节点
        cur->next = pre;                       // 修改节点引用指向
        return res;                            // 返回反转链表的头节点
    }
};
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值