Content deleted Content added
No edit summary Tags: Mobile edit Mobile web edit |
m Reverted edits by 2600:1011:B169:6E45:F99D:37F9:CC5C:5D44 (talk) (HG) (3.3.0) |
||
Line 1:
{{Orphan|date=February 2009}}
'''Uniform binary search''' is an optimization of the classic [[binary search]] algorithm invented by [[Donald Knuth]] and given in
▲'''Uniform binary search''' is an optimization of the classic [[binary search]] algorithm invented by [[Donald Knuth]] and given in KnThe Art of Computer Programming]]''. Ituses[[lookup table]] to update a single array index, rather than taking the midpoint of an upper and a lower bound on each iteration; therefore, it is optimized for architectures (such
*a table lookup is generally faster than an addition and a shift, and
*many searches will be performed on the same array, or on several arrays of the same length
|