LeetCode 92. 反转链表 II【模拟,链表】

给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。

示例 1:

输入:head = [1,2,3,4,5], left = 2, right = 4
输出:[1,4,3,2,5]
示例 2:

输入:head = [5], left = 1, right = 1
输出:[5]

提示:

链表中节点数目为 n
1 <= n <= 500
-500 <= Node.val <= 500
1 <= left <= right <= n

需要反转节点的区间的前一个节点为beg,然后遍历要反转的节点,将其加入到beg后面就行。

/**
 * 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) {
        ListNode *hair = new ListNode();
        hair -> next = head;
        ListNode *beg = hair, *tail = head;
        for(int i = 1; i < left; i++) {
            beg = beg -> next;
        }
        tail = beg -> next;//反转区间的第一个节点,beg为前一个节点
        for(int i = 0; i < right - left; i++) {
            ListNode *tem = tail -> next;//需要改变位置的节点
            tail -> next = tem -> next;//删除下一个节点
            tem -> next = beg -> next;//修改所操作节点的指向
            beg -> next = tem;
        }
        return hair -> next;
    }
};
上一篇:最长回文子串


下一篇:STL常用拷贝和替换算法