User Michael - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:30:00Zhttp://stackoverflow.com/feeds/user/49147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/392397/arrays-whats-the-point/393453#3934531Answer by Michael for Arrays, What's the point?Michael2008-12-26T04:00:46Z2008-12-26T04:00:46Z<p>The binary tree in the example is only faster because it is sorted, if the array were sorted the only way a binary tree could beat it for search time is to be perfectly balanced.</p>
<p>If the array is sorted you only have to visit the middle node, then search the half of the array that your value is in, over and over.</p>