File tree 1 file changed +9
-18
lines changed
1 file changed +9
-18
lines changed Original file line number Diff line number Diff line change @@ -281,26 +281,17 @@ void merge(struct list_head *head,
281
281
/* Sort elements of queue in ascending/descending order */
282
282
void q_sort (struct list_head * head , bool descend )
283
283
{
284
- if (!head || list_empty ( head ) || list_is_singular ( head ) )
284
+ if (!head || head -> next == head || head -> prev == head -> next )
285
285
return ;
286
-
287
- struct list_head * slow = head -> next , * fast = head -> next -> next ;
288
- while ( fast != head && fast -> next != head ) {
286
+ struct list_head * slow = head ;
287
+ const struct list_head * fast = head -> next ;
288
+ for (; fast != head && fast -> next != head ; fast = fast -> next -> next )
289
289
slow = slow -> next ;
290
- fast = fast -> next -> next ;
291
- }
292
-
293
- struct list_head l , r ;
294
- INIT_LIST_HEAD (& l );
295
- INIT_LIST_HEAD (& r );
296
-
297
- list_cut_position (& l , head , slow );
298
- list_splice_init (head , & r );
299
-
300
- q_sort (& l , descend );
301
- q_sort (& r , descend );
302
-
303
- merge (head , & l , & r , descend );
290
+ struct list_head left ;
291
+ list_cut_position (& left , head , slow );
292
+ q_sort (& left , descend );
293
+ q_sort (head , descend );
294
+ q_merge_two (head , & left , descend );
304
295
}
305
296
306
297
void q_merge_two (struct list_head * first ,
You can’t perform that action at this time.
0 commit comments