-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathlist.cpp
128 lines (127 loc) · 2.47 KB
/
list.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
#include <stdlib.h>
#include <cassert>
struct ListNode {
int val;
ListNode *next;
ListNode(int x): val(x), next(nullptr) {}
};
class Solution {
public:
ListNode *reverseKGroup(ListNode *head, int k) {
if (head == nullptr || k <= 1)
return head;
ListNode *begin = head, *end = nullptr;
ListNode *prev = nullptr;
/* First reverse */
/* 第一次操作,主要需要更新head和prev指针 */
if (begin) {
int K = k - 1;
ListNode *p = begin;
while (K && p->next) {
end = p->next;
p = p->next;
K--;
}
if (K)
return head;
ListNode *next = reverse(begin, end);
prev = begin;
head = end;
begin = next;
}
while (begin) {
int K = k - 1;
ListNode *p = begin;
while (K && p->next) {
end = p->next;
p = p->next;
K--;
}
if (K) { // 不足k个节点,不需要reverse,但需要更新处理完毕的尾部节点
prev->next = begin; // 记得最后更新prev指针
return head;
}
ListNode *next = reverse(begin, end);
prev->next = end;
prev = begin;
begin = next;
}
return head;
}
private:
ListNode *reverse(ListNode *begin, ListNode *end) {
assert(begin && end);
ListNode *p = begin;
ListNode *prev = nullptr;
ListNode *endFlag = end->next;
while (p != endFlag) { // 条件不能写成 p != end->next, 因为end->next reverse时会修改
ListNode *q = p->next;
p->next = prev;
prev = p;
p = q;
}
return p;
}
};
int getLength(ListNode *head)
{
int len = 0;
ListNode *p = head;
while (p) {
++len;
p = p->next;
}
return len;
}
void print(ListNode *head)
{
if (head == nullptr) {
printf("NULL\n");
return;
}
struct ListNode *p = head;
while (p) {
printf("%d ", p->val);
p = p->next;
}
printf("\n");
}
ListNode * mk_list(ListNode **ha, int a[], int n)
{
if (n < 1)
return nullptr;
ListNode *p = new ListNode(a[0]);
*ha = p;
for (int i = 1; i < n; ++i) {
ListNode *q = new ListNode(a[i]);
p->next = q;
p = q;
}
return p;
}
void free_list(struct ListNode *head)
{
struct ListNode *p = head;
while (p) {
struct ListNode *q = p->next;
delete p;
p = q;
}
}
int main(int argc, char **argv)
{
Solution solution;
struct ListNode *head = NULL;
int a[] = {1, 2, 3, 4, 5, 6};
mk_list(&head, a, 6);
print(head);
head = solution.reverseKGroup(head, 3);
print(head);
return 0;
}