Skip to content

Commit 3360075

Browse files
committed
Rewrite 'q_reverseK' function
Previous implementation of 'q_reverseK' function is wrong. Change-Id: I0e3db12bb2b42d21c1e049cb0fb39734f8f4e36b
1 parent 1363441 commit 3360075

File tree

1 file changed

+11
-36
lines changed

1 file changed

+11
-36
lines changed

queue.c

+11-36
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,6 @@ static inline element_t *q_remove(struct list_head *node,
5858
return element;
5959
}
6060

61-
static void q_restruct(struct list_head *head)
62-
{
63-
struct list_head *curr = head, *nxt = curr->next;
64-
while (nxt) {
65-
nxt->prev = curr;
66-
curr = nxt;
67-
nxt = nxt->next;
68-
}
69-
curr->next = head;
70-
head->prev = curr;
71-
}
72-
7361
/* Create an empty queue */
7462
struct list_head *q_new()
7563
{
@@ -232,36 +220,23 @@ void q_reverse(struct list_head *head)
232220
void q_reverseK(struct list_head *head, int k)
233221
{
234222
// https://leetcode.com/problems/reverse-nodes-in-k-group/
235-
if (!head || list_empty(head) || k < 1)
223+
if (!head || head->next == head || k <= 1)
236224
return;
237-
238-
int cnt = 0;
239-
struct list_head *sub_head = head->next, *next_head = NULL,
240-
*old_tail = head;
241-
242-
/* cut the list to be singly-linked list */
243-
head->prev->next = NULL;
244-
245-
for (struct list_head *node = head->next; node; node = node->next) {
225+
size_t cnt = 0;
226+
struct list_head *curr = NULL, *safe = NULL, *start = head;
227+
list_for_each_safe (curr, safe, head) {
246228
cnt++;
247229
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;
255-
sub_head->next = next_head;
256-
257-
/* update pointer */
258-
old_tail = sub_head;
259-
sub_head = next_head;
230+
LIST_HEAD(tmp);
260231
cnt = 0;
232+
233+
list_cut_position(&tmp, start, curr);
234+
q_reverse(&tmp);
235+
list_splice(&tmp, start);
236+
237+
start = safe->prev;
261238
}
262239
}
263-
/* restructure_list(head) */
264-
q_restruct(head);
265240
}
266241

267242
/* Sort elements of queue in ascending/descending order */

0 commit comments

Comments
 (0)