@@ -58,18 +58,6 @@ static inline element_t *q_remove(struct list_head *node,
58
58
return element ;
59
59
}
60
60
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
-
73
61
/* Create an empty queue */
74
62
struct list_head * q_new ()
75
63
{
@@ -232,36 +220,23 @@ void q_reverse(struct list_head *head)
232
220
void q_reverseK (struct list_head * head , int k )
233
221
{
234
222
// 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 )
236
224
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 ) {
246
228
cnt ++ ;
247
229
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 );
260
231
cnt = 0 ;
232
+
233
+ list_cut_position (& tmp , start , curr );
234
+ q_reverse (& tmp );
235
+ list_splice (& tmp , start );
236
+
237
+ start = safe -> prev ;
261
238
}
262
239
}
263
- /* restructure_list(head) */
264
- q_restruct (head );
265
240
}
266
241
267
242
/* Sort elements of queue in ascending/descending order */
0 commit comments