Uniform binary search: Difference between revisions

Content deleted Content added
No edit summary
Tags: Mobile edit Mobile web edit
m change source to syntaxhighlight
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! -->
<sourcesyntaxhighlight lang="c">
#define LOG_N 4
 
Line 58:
return 0;
}
</syntaxhighlight>
</source>
 
==References==