plan9fox/sys
Ori Bernstein b5086c1863 libc: recurse on smaller half of array
Our qsort has an optimization to recurse on one
half of the array, and do a tail call on the other
half. Unfortunately, the condition deciding which
half of the array to recurse on was wrong, so we
were recursing on the larger half of the array and
iterating on the smaller half.

This meant that if we picked the partition poorly,
we were pessimizing our stack usage instead of
optimizing it.

This change reduces our stack usage from O(n)
to O(log(n)) for poorly chosen pivots.
2020-11-01 11:23:39 -08:00
..
doc /sys/doc: fix mkfile to and remove files that now can be regenerated 2017-05-09 16:23:48 +02:00
games/lib fortunes: As much as I'd love to I feel I have to let it go -- rminnich 2020-04-18 21:37:53 -04:00
include ape/limits.h: fix typo in (U)LLONG_MAX 2020-09-21 11:43:31 -07:00
lib kbmap: add latvian keymap (thanks freddy) 2020-10-25 00:49:29 +02:00
man mp(2): correct documentation of error handling (thanks LordCreepity) 2020-10-24 17:24:59 -07:00
src libc: recurse on smaller half of array 2020-11-01 11:23:39 -08:00