User Michael - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:30:00Z http://stackoverflow.com/feeds/user/49147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/392397/arrays-whats-the-point/393453#393453 1 Answer by Michael for Arrays, What's the point? Michael 2008-12-26T04:00:46Z 2008-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>