summaryrefslogtreecommitdiff
path: root/src/stdlib/bsearch.c
AgeCommit message (Collapse)AuthorLines
2018-07-23bsearch: simplify and optimizeFangrui Song-6/+6
maintainer's note: the key observation here is that the compared element is the first slot of the second ceil(half) of the array, and thus can be removed for further comparison when it does not match, so that we descend into the second ceil(half)-1 rather than ceil(half) elements. this change ensures that nel strictly decreases with each iteration, so that the case of != but nel==1 does not need to be special-cased anymore.
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+20