File tree 1 file changed +14
-11
lines changed
1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ void q_reverse(struct list_head *head)
232
232
void q_reverseK (struct list_head * head , int k )
233
233
{
234
234
// https://leetcode.com/problems/reverse-nodes-in-k-group/
235
- if (!head || list_empty (head ))
235
+ if (!head || list_empty (head ) || k < 1 )
236
236
return ;
237
237
238
238
int cnt = 0 ;
@@ -242,17 +242,20 @@ void q_reverseK(struct list_head *head, int k)
242
242
/* cut the list to be singly-linked list */
243
243
head -> prev -> next = NULL ;
244
244
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 ;
254
255
sub_head -> next = next_head ;
255
- old_tail = sub_tail = sub_head ;
256
+
257
+ /* update pointer */
258
+ old_tail = sub_head ;
256
259
sub_head = next_head ;
257
260
cnt = 0 ;
258
261
}
You can’t perform that action at this time.
0 commit comments