LeetCode_92_反转链表2
廖家龙 用心听,不照做

题目描述:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。

示例:

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

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

提示:
1. 链表中节点数目为 n
2. 1 <= n <= 500
3. -500 <= Node.val <= 500
4. 1 <= left <= right <= n

解法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
/**
* 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) {

//设置dummyNode哑节点是这一类问题的一般做法
ListNode *dummyNode = new ListNode(-1,head);

ListNode *pre = dummyNode;

for (int i = 0; i < left - 1; i++) pre = pre->next;

ListNode *cur = pre->next;

for (int i = 0; i < right - left; i++) {

ListNode *next = cur->next;
cur->next = next->next;
next->next = pre->next;
pre->next = next;

//初始:1->2->3->4->5
//第一次循环:1->3->2->4->5
//第二次循环:1->4->3->2->5
}

return dummyNode->next;
}
};