-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreverse_nodes_in_k-Group.cpp
70 lines (62 loc) · 1.59 KB
/
reverse_nodes_in_k-Group.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
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* reverseKGroup(ListNode* head, int k) {
if (head == nullptr || head->next == nullptr || k == 1)
return head;
ListNode* one = head;
ListNode* oneBackup = one;
ListNode* two = one->next;
ListNode* three = two->next;
ListNode* nextHead = exist(one, k);
if (nextHead)
head = nextHead;
else
return head;
while (1)
{
bool end = false;
ListNode* nextHead = exist(one, 2 * k);
if (nextHead)
one->next = nextHead;
else
end = true;
for(int i = 0; i < k - 2; ++i)
{
two->next = one;
one = two;
two = three;
three = three->next;
}
two->next = one;
if (end)
{
oneBackup->next = three;
break;
}
one = oneBackup = three;
two = one->next;
three = two->next;
}
return head;
}
ListNode* exist(ListNode* head, int k)
{
for(int i = 0; i < k - 1; ++i)
{
if (head == nullptr)
{
return nullptr;
}
head = head->next;
}
return head;
}
};