Binary search

Binary search is a way of searching data inside a sorted list that can drastically reduce the time of the search operations.
In this example I'm searching for an integer because it's the most reliable data type in as. When comparing strings or complex objects some expedient should be taken to be sure that the comparison it's correct. The Comparable interface of Java could be a good solution.
To give insight about how fast is this method, to run 500 searchs in a list of 1000000 items the binarySearch took 2 to 5 milliseconds doing only 16-17 comparisons.
The regular indexOf method of the Array class took 450 milliseconds to perform the same task.
The bit operations (>>>) used to take the middle number (probe) also helped a bit, using a regular division (/2) increased the time to run the task to 4-9 milliseconds.
public function binarySearch(keys:Array, target:int):int
{
var high:int = keys.length;
var low:int = -1;

while (high - low > 1)
{
var probe:int = (low + high) >>> 1;
if (keys[probe] > target)
{
high = probe;
}
else
{
low = probe;
}
}

return (low == -1 || keys[low] !== target) ? -1 : low;
}

Comments on this post

Nice script, it's really fast!
That's really srhewd! Good to see the logic set out so well.
Bkt7dQ <a href="http://dmujrkgggiso.com/">dmujrkgggiso</a>
<a href="http://www.westernneclassifieds.com/">cheap accutane online</a> %DD <a href="http://www.welchfoundation.org/propecia.html">order discounted propecia online</a> 95785
<a href="http://www.fsoglobetrotter.com">classic car insurance</a> gxb <a href="http://www.maxmole.com/">homeowners insurance quotations</a> >:-O
<a href="http://www.concordgracechurch.org/">prednisone</a> 908 <a href="http://welchfoundation.org/propecia.html">propecia generic name</a> =PP
<a href="http://www.insurersbasic.com/">low car insurance</a> =-OOO <a href="http://www.insurerslist.net/">business insurance</a> =-DD
<a href="http://www.remedyshopping.net/">tramadol</a> 22869 <a href="http://www.medicaoffers.com/">levitra to buy</a> haugkf
<a href="http://www.searchinsur.com/">state auto insurance</a> dvqyo <a href="http://www.getautoinsurers.com/">cheap california auto insurance</a> :O
<a href="http://www.insurersbasic.com/">cheap car insurance</a> 702 <a href="http://www.insurplus.net/">cheap car insurance</a> 595
<a href="http://www.myonlineinsur.com/">car insureance</a> 796413 <a href="http://www.myinsurdeals.com/">home insurance in florida</a> =-]]
<a href="http://www.findmedsonline.net/">buy online viagra where</a> =-(( <a href="http://www.findmedspartners.com/">levitra</a> 27761
<a href="http://www.getautoinsurers.com/">cheap auto insurance</a> txg <a href="http://www.insurersdeals.com/">life insurance</a> =-)))
<a href="http://www.getautoinsurers.com/">cheap auto insurance</a> 274096 <a href="http://www.insurproducts.net/cheap_auto_insurance.html">cheap auto insurance</a> 8-((
<a href="http://www.findinsuronline.net/">car insurance</a> lerg <a href="http://www.insuraccount.net/">life insurance quotes</a> 89804
<a href="http://www.insurproviders.com/">auto insurance quotes</a> xckhp <a href="http://www.searchinsur.com/">car insurance in florida</a> 8DDD
<a href="http://www.medicastores.net/">cialis compar compar levitra viagra</a> 090086 <a href="http://www.findmedspartners.com/">levitra</a> 249064
<a href="http://www.covermyhome.net/Life-Insurance.html">life insurance</a> =-D <a href="http://www.searchinsuronline.com/">cheapest auto insurance</a> gkecjs
<a href="http://www.myonlineinsur.com/">low car insurance</a> knloe <a href="http://www.insurersdeals.com/">universal life insurance</a> =-DD
<a href="http://www.greatmedschoice.net/">tramadol</a> =-] <a href="http://www.medicaoffers.com/">levitra</a> >:P
<a href="http://www.covermyhome.net/Life-Insurance.html">life insurance</a> 0183 <a href="http://www.findyourinsurer.com/">cheap health insurance</a> >:D
<a href="http://www.findyourinsurer.com/">pennsylvania health insurance</a> %-] <a href="http://www.covermyhome.net/">home insurance</a> =-]
<a href="http://www.findyourpills.net/">colchicine</a> 690881 <a href="http://www.onlinemedspro.com/">cymbalta generic</a> hawr
<a href="http://www.medsshipping.net/">prednisone online</a> >:-]] <a href="http://www.medsonweb.com/">cymbalta</a> onfg
<a href="http://www.topmdhelp.com/">topamax</a> xoe <a href="http://www.pillslife.net/">accutane online</a> zdb
<a href="http://www.onlinemedico.net/">buy prednisone</a> >:PPP <a href="http://www.shoppills.net/">topamax</a> 819
That's way the btesset answer so far!
XokUfD <a href="http://gczgrrptzszn.com/">gczgrrptzszn</a>

Post a comment

Embed any code between [code] [/code] tags
captcha image   Reload