Binary Search: Background & Python Code

Code below... Continuing our series investigating algorithms in Python, in this video we’ll cover the Binary Search, a highly efficient searching technique that only applies under certain conditions. In the beginning of the video we’ll go over the basics of the binary search, and later we’ll open up our coding editor and actually implement the algorithm using Python. ► Python 2 ► Python 3 ► Python Data Structures: ► Video series covering GUI development in Python (WIP): References: [1] [2] [3] In computer science, binary search, also known as half-interval search, logarithmic search, or binary chop, is a search algorithm that finds the position of a target value within a sorted array. Binary search compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful. If the search ends with the remaining half being empty, the target is not in the array. Binary search runs in at worst logarithmic time, making O(log n) comparisons, where n is the number of elements in the array, the O is Big O notation, and log is the logarithm. Binary search takes constant (O(1)) space, meaning that the space taken by the algorithm is the same for any number of elements in the array. Although specialized data structures designed for fast searching—such as hash tables—can be searched more efficiently, binary search applies to a wider range of problems.
Back to Top