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

1 |
|
示例 2:
1 |
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42/**
* 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) {
if(left == 1) {
return reverseN(head, right);
}
ListNode* pre = head;
for(int i = 1; i < left - 1; i++) {
pre = pre->next;
}
pre->next = reverseN(pre->next, right - left + 1);
return head;
}
ListNode* reverseN(ListNode* head, int n) {
if(head == nullptr || head->next == nullptr) {
return head;
}
ListNode* pre = nullptr, *cur = head;
while(cur != nullptr && n > 0) {
ListNode* next = cur->next;
cur->next = pre;
pre = cur;
cur = next;
n--;
}
head->next = cur;
return pre;
}
};