反转链表Ⅱ

反转链表Ⅱ

链接

https://leetcode-cn.com/problems/reverse-linked-list-ii/

代码

我的代码

基于栈进行反转,比较复杂,空间复杂度比较高,时间复杂度为存在常数的O(n)

/**
 * 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* reverseBetween(ListNode* head, int left, int right) {
        int count = 1;
        ListNode* be = NULL;
        ListNode* af = NULL;

        ListNode* curr = head;
        ListNode* ans;
        ListNode* ans_head;

        stack<ListNode*> stk;

        if(head->next == NULL){
            return head;
        }

        while(count < left){
            if(count == left - 1){
                be = curr;
            }
            curr = curr->next;
            count++;
        }

        while(count >= left && count <= right){
            stk.push(curr);
            count++;
            curr = curr->next;
        }

        af = curr;
    
        ans_head = stk.top();
        ans = ans_head;
        stk.pop();

        while(!stk.empty()){
            ans->next = stk.top();
            stk.pop();
            ans = ans->next;
        }
        
        if(be != NULL){
            be->next = ans_head;
            ans->next = af;
            return head;
        }else{
            ans->next = af;
            return ans_head;
        }
    }
};

优化代码

非常巧妙,对于链表的操作很有指导意义

需要多次复习

巧用next操作

/**
 * 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* reverseBetween(ListNode* head, int left, int right) {
        int count = 1;
        ListNode* pre = NULL;
        ListNode* af = NULL;
        ListNode* temp = new ListNode(-1);
        temp -> next = head;

        ListNode* curr = temp;
        ListNode* next;

        for(int i = 1; i <= left-1; i++){
            curr = curr -> next;
        }
        pre = curr;
        curr = curr -> next;
        
        for(int i = left+1; i <= right; i++){
            next = curr -> next;
            curr -> next = next -> next;
            next -> next = pre -> next;
            pre -> next = next;
        }
        return temp -> next;

    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值