Content deleted Content added
No edit summary Tags: Mobile edit Mobile web edit |
m Disambiguating links to Mix (link changed to MIX (abstract machine)) using DisamAssist. |
||
(7 intermediate revisions by 5 users not shown) | |||
Line 1:
'''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
Line 7:
The uniform [[binary search algorithm]] looks like this, when implemented in [[C (programming language)|C]].
<!-- Please don't break this code. Test before editing! -->
<syntaxhighlight lang="c">
▲ #define LOG_N 4
▲ static int delta[LOG_N];
▲ void make_delta(int N)
▲ {
▲ int power = 1;
do
power
delta[i]
} while
▲ }
▲ int unisearch(int *a, int key)
int i = delta[0] - 1; /* midpoint of array */
▲ {
▲ int d = 0;
while (1) {
} else if (delta[d] ==
} else
} else {
i ▲ }
▲ /* Example of use: */
▲ #define N 10
▲ int main(void)
▲ {
▲ int i, a[N] = {1,3,5,6,7,9,14,15,17,19};
for (int i = 0; i < 20; ++i)
printf("%d is at index %d\n", i, unisearch(a, i)); </syntaxhighlight>
==References==
|