Skip to content

Commit ffdb7e7

Browse files
committed
Rewrite 'q_sort' function
Rewrite 'q_sort' function to achieve stable sorting and more efficient operation time. Change-Id: I856fd1943b72b49fd2308060e51126822dfea4af
1 parent cf1974f commit ffdb7e7

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

queue.c

+9-18
Original file line numberDiff line numberDiff line change
@@ -281,26 +281,17 @@ void merge(struct list_head *head,
281281
/* Sort elements of queue in ascending/descending order */
282282
void q_sort(struct list_head *head, bool descend)
283283
{
284-
if (!head || list_empty(head) || list_is_singular(head))
284+
if (!head || head->next == head || head->prev == head->next)
285285
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)
289289
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);
304295
}
305296

306297
void q_merge_two(struct list_head *first,

0 commit comments

Comments
 (0)