题解 | #链表内指定区间反转#

链表内指定区间反转

https://www.nowcoder.com/practice/b58434e200a648c589ca2063f1faf58c

思路:把握住四个点:
1.链表的起始节点
2.链表反转前的节点cur
3.链表反转后的起始节点thead
4.链表反转后的末端节点tback
1)将cur->next指向反转后的起始节点
cur->next = thead
2)将链表反转后的节点tback指向更新后的head
tback->next = head
3)需要注意的是当m为1的时候,返回链表反转后的起始节点thead,其他时间则返回链表的起始节点nhead
return cur == nullptr? thead : nhead;

class Solution {
public:
    /**
     * 
     * @param head ListNode类 
     * @param m int整型 
     * @param n int整型 
     * @return ListNode类
     */
    ListNode* reverseBetween(ListNode* head, int m, int n) {
        // write code here
        if(m == n) return head;
        int index = -1;
        ListNode* cur = nullptr;
        ListNode* nhead = head;
        ListNode* thead = nullptr;
        ListNode* tback = nullptr;
        while(true){
            //将这里的index放到m-1的位置就停止
            while(index<m-2){
                index++;
                cur = head;
                head = head->next;
            }
            //将index放到n-1的位置处停止,cur不动,新建一个链表
            while(index < n-1){
                index++;
                ListNode* temp = head->next;
                head->next = thead;
                if(thead == nullptr) tback = head;
                thead = head;
                head = temp;
            }
            if(cur!= nullptr) cur->next = thead;
            tback->next = head;
            break;
        }
        //防止从一开始就是空指针,nHead无法更新自己,必须要将前导是否为0,即m=1的情况下隔离开来
        return cur == nullptr? thead : nhead;
    }
};


#神仙公司的日常#
全部评论

相关推荐

11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
10-09 00:50
已编辑
长江大学 算法工程师
不期而遇的夏天:1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务