File tree 1 file changed +0
-20
lines changed
1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -258,26 +258,6 @@ void q_reverseK(struct list_head *head, int k)
258
258
q_restruct (head );
259
259
}
260
260
261
- /* meger each elements of queue in ascending/descending order */
262
- void merge (struct list_head * head ,
263
- struct list_head * left ,
264
- struct list_head * right ,
265
- bool descend )
266
- {
267
- while (!list_empty (left ) && !list_empty (right )) {
268
- const element_t * l = list_entry (left -> next , element_t , list );
269
- const element_t * r = list_entry (right -> next , element_t , list );
270
- if (((descend * 2 ) - 1 ) * strcmp (l -> value , r -> value ) > 0 )
271
- list_move_tail (left -> next , head );
272
- else
273
- list_move_tail (right -> next , head );
274
- }
275
- if (list_empty (head ))
276
- list_splice_tail (right , head );
277
- else
278
- list_splice_tail (left , head );
279
- }
280
-
281
261
/* Sort elements of queue in ascending/descending order */
282
262
void q_sort (struct list_head * head , bool descend )
283
263
{
You can’t perform that action at this time.
0 commit comments