Binary Search
Binary search is a search algorithm that requires a sorted array as input. It starts in the midpoint and searches either side of the array, based on whether the midpoint is larger or smaller than the search input. Binary search has Worst-Case Time Complexity.