Skip to content

Commit 1363441

Browse files
committed
Correct 'q_reverseK'
The previous 'q_reverseK' functions is wrong. Change-Id: I339302bd69b4d4b606ca29158133ba30f57d61ac
1 parent 99644bf commit 1363441

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

queue.c

+14-11
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ void q_reverse(struct list_head *head)
232232
void q_reverseK(struct list_head *head, int k)
233233
{
234234
// https://leetcode.com/problems/reverse-nodes-in-k-group/
235-
if (!head || list_empty(head))
235+
if (!head || list_empty(head) || k < 1)
236236
return;
237237

238238
int cnt = 0;
@@ -242,17 +242,20 @@ void q_reverseK(struct list_head *head, int k)
242242
/* cut the list to be singly-linked list */
243243
head->prev->next = NULL;
244244

245-
for (struct list_head *sub_tail = head->next; sub_tail;
246-
sub_tail = sub_tail->next) {
247-
if (++cnt == k) {
248-
next_head = sub_tail->next;
249-
sub_tail->next = old_tail;
250-
q_reverse(old_tail);
251-
/* old node connects to the head of new list */
252-
old_tail->next = sub_tail;
253-
/* the new list connect to the next node */
245+
for (struct list_head *node = head->next; node; node = node->next) {
246+
cnt++;
247+
if (cnt == k) {
248+
next_head = node->next;
249+
node->next = NULL;
250+
q_reverse(sub_head); /* reverse k nodes */
251+
252+
/* reconnect */
253+
if (old_tail)
254+
old_tail->next = node;
254255
sub_head->next = next_head;
255-
old_tail = sub_tail = sub_head;
256+
257+
/* update pointer */
258+
old_tail = sub_head;
256259
sub_head = next_head;
257260
cnt = 0;
258261
}

0 commit comments

Comments
 (0)