Community

Binary Search Algorithm

(Richard Carr) The binary search algorithm provides fast searching within sorted arrays or collections. This iterative approach to searching disregards approximately half of the values in the collection with each pass to give O(log n) scalability.

Read More - Register for Free Membership