Skip to content

Commit 43eb2f7

Browse files
committed
Remove 'merge' function
'merge' function is no longer called. Change-Id: I7ef35beb3ec4be4a214d049fd92fdfdc1427c956
1 parent ffdb7e7 commit 43eb2f7

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

queue.c

-20
Original file line numberDiff line numberDiff line change
@@ -258,26 +258,6 @@ void q_reverseK(struct list_head *head, int k)
258258
q_restruct(head);
259259
}
260260

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-
281261
/* Sort elements of queue in ascending/descending order */
282262
void q_sort(struct list_head *head, bool descend)
283263
{

0 commit comments

Comments
 (0)