Binary search algorithm

Binary search algorithm
Binary Search Depiction.svg
Visualization of the binary search algorithm where 7 is the target value
ClassSearch algorithm
Data structureArray
Worst-case performanceO(log n)
Best-case performanceO(1)
Average performanceO(log n)
Worst-case space complexityO(1)
In computer sciencebinary search, also known as half-interval search,[1] logarithmic search,[2] or binary chop,[3] is a search algorithm that finds the position of a target value within a sorted array.[4][5] Binary search compares the target value to the middle element of the array. If they are not equal, the half in which the target cannot lie is eliminated and the search continues on the remaining half, again taking the middle element to compare to the target value, and repeating this until the target value is found. If the search ends with the remaining half being empty, the target is not in the array. Even though the idea is simple, implementing binary search correctly requires attention to some subtleties about its exit conditions and midpoint calculation, particularly if the values in the array are not all of the whole numbers in the range.
Binary search runs in logarithmic time in the worst case, 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.[6] Binary search is faster than linear search except for small arrays, but the array must be sorted first. Although specialized data structuresdesigned for fast searching, such as hash tables, can be searched more efficiently, binary search applies to a wider range of problems.
There are numerous variations of binary search. In particular, fractional cascading speeds up binary searches for the same value in multiple arrays. Fractional cascading efficiently solves a number of search problems in computational geometry and in numerous other fields. Exponential search extends binary search to unbounded lists. The binary search tree and B-tree data structures are based on binary search.

Algorithm

Binary search works on sorted arrays. Binary search begins by comparing the middle element of the array with the target value. If the target value matches the middle element, its position in the array is returned. If the target value is less than the middle element, the search continues in the lower half of the array. If the target value is greater than the middle element, the search continues in the upper half of the array. By doing this, the algorithm eliminates the half in which the target value cannot lie in each iteration.[7]

Procedure

Given an array  of  elements with values or records sorted such that , and target value , the following subroutine uses binary search to find the index of  in .[7]
  1. Set  to  and  to .
  2. If , the search terminates as unsuccessful.
  3. Set  (the position of the middle element) to the floor of , which is the greatest integer less than or equal to .
  4. If , set  to  and go to step 2.
  5. If , set  to  and go to step 2.
  6. Now , the search is done; return .
This iterative procedure keeps track of the search boundaries with the two variables  and . The procedure may be expressed in pseudocode as follows, where the variable names and types remain the same as above, floor is the floor function, and unsuccessful refers to a specific value that conveys the failure of the search.[7]
function binary_search(A, n, T):
    L := 0
    R := n − 1
    while L <= R:
        m := floor((L + R) / 2)
        if A[m] < T:
            L := m + 1
        else if A[m] > T:
            R := m - 1
        else:
            return m
    return unsuccessful

Alternative procedure

In the above procedure, the algorithm checks whether the middle element () is equal to the target () in every iteration. Some implementations leave out this check during each iteration. The algorithm would perform this check only when one element is left (when ). This results in a faster comparison loop, as one comparison is eliminated per iteration. However, it requires one more iteration on average.[8]
Hermann Bottenbruch published the first implementation to leave out this check in 1962.[8][9]
  1. Set  to  and  to .
  2. If , go to step 6.
  3. Set  (the position of the middle element) to the ceiling of , which is the least integer greater than or equal to .
  4. If , set  to  and go to step 2.
  5. Set  to  and go to step 2.
  6. Now , the search is done. If , return . Otherwise, the search terminates as unsuccessful.

Duplicate elements

The procedure may return any index whose element is equal to the target value, even if there are duplicate elements in the array. For example, if the array to be searched was  and the target was , then it would be correct for the algorithm to either return the 4th (index 3) or 5th (index 4) element. The regular procedure would return the 4th element (index 3). However, it is sometimes necessary to find the leftmost element or the rightmost element if the target value is duplicated in the array. In the above example, the 4th element is the leftmost element of the value 4, while the 5th element is the rightmost element of the value 4. The alternative procedure above will always return the index of the rightmost element if an element is duplicated in the array.[9]

Procedure for finding the leftmost element

To find the leftmost element, the following procedure can be used:[10]
  1. Set  to  and  to .
  2. If , go to step 6.
  3. Set  (the position of the middle element) to the floor of , which is the greatest integer less than or equal to 
  4. If , set  to  and go to step 2.
  5. Otherwise, if , set  to  and go to step 2.
  6. Now , the search is done, return .
If  and , then  is the leftmost element that equals . Even if  is not in the array,  is the rank of  in the array, or the number of elements in the array that are less than .
Where floor is the floor function, the pseudocode for this version is:
function binary_search_leftmost(A, n, T):
    L := 0
    R := n
    while L < R:
        m := floor((L + R) / 2)
        if A[m] < T:
            L := m + 1
        else:
            R := m
    return L

Procedure for finding the rightmost element

To find the rightmost element, the following procedure can be used:[10]
  1. Set  to  and  to .
  2. If , go to step 6.
  3. Set  (the position of the middle element) to the floor of , which is the greatest integer less than or equal to .
  4. If , set  to  and go to step 2.
  5. Otherwise, If , set  to  and go to step 2.
  6. Now , the search is done, return .
If  and , then  is the rightmost element that equals . Even if  is not in the array,  is the number of elements in the array that are greater than .
Where floor is the floor function, the pseudocode for this version is:
function binary_search_rightmost(A, n, T):
    L := 0
    R := n
    while L < R:
        m := floor((L + R) / 2)
        if A[m] <= T:
            L := m + 1 
        else:
            R := m
    return L - 1

Approximate matches

Binary search can be adapted to compute approximate matches. In the example above, the rank, predecessor, successor, and nearest neighbor are shown for the target value , which is not in the array.
The above procedure only performs exact matches, finding the position of a target value. However, it is trivial to extend binary search to perform approximate matches because binary search operates on sorted arrays. For example, binary search can be used to compute, for a given value, its rank (the number of smaller elements), predecessor (next-smallest element), successor (next-largest element), and nearest neighborRange queries seeking the number of elements between two values can be performed with two rank queries.[11]
  • Rank queries can be performed with the procedure for finding the leftmost element. The number of elements less than the target value is returned by the procedure.[11]
  • Predecessor queries can be performed with rank queries. If the rank of the target value is , its predecessor is .[12]
  • For successor queries, the procedure for finding the rightmost element can be used. If the result of running the procedure for the target value is , then the successor of the target value is .[12]
  • The nearest neighbor of the target value is either its predecessor or successor, whichever is closer.
  • Range queries are also straightforward.[12] Once the ranks of the two values are known, the number of elements greater than or equal to the first value and less than the second is the difference of the two ranks. This count can be adjusted up or down by one according to whether the endpoints of the range should be considered to be part of the range and whether the array contains keys matching those endpoints.[13]

Performance

tree representing binary search. The array being searched here is , and the target value is .
The worst case is reached when the search reaches the deepest level of the tree, while the best case is reached when the target value is the middle element.
The performance of binary search can be analyzed by reducing the procedure to a binary comparison tree. The root node of the tree is the middle element of the array. The middle element of the lower half is the left child node of the root and the middle element of the upper half is the right child node of the root. The rest of the tree is built in a similar fashion. This model represents binary search. Starting from the root node, the left or right subtrees are traversed depending on whether the target value is less or more than the node under consideration. This represents the successive elimination of elements.[6][14]
In the worst case, binary search makes  iterations of the comparison loop, where the  notation denotes the floor function that yields the greatest integer less than or equal to the argument, and  is the binary logarithm. The worst case is reached when the search reaches the deepest level of the tree. This is equivalent to a binary search that has reduced to one element and always eliminates the smaller subarray out of the two in each iteration if they are not of equal size.[a][14]
The worst case may also be reached when the target element is not in the array. If  is one less than a power of two, then this is always the case. Otherwise, the search may perform iterations if the search reaches the deepest level of the tree. However, it may make  iterations, which is one less than the worst case, if the search ends at the second-deepest level of the tree.[15]
On average, assuming that each element is equally likely to be searched, binary search makes  iterations when the target element is in the array. This is approximately equal to  iterations. When the target element is not in the array, binary search makes  iterations on average, assuming that the range between and outside elements is equally likely to be searched.[14]
In the best case, where the target value is the middle element of the array, its position is returned after one iteration.[16]
In terms of iterations, no search algorithm that works only by comparing elements can exhibit better average and worst-case performance than binary search. The comparison tree representing binary search has the fewest levels possible as every level above the lowest level of the tree is filled completely.[b] Otherwise, the search algorithm can eliminate few elements in an iteration, increasing the number of iterations required in the average and worst case. This is the case for other search algorithms based on comparisons, as while they may work faster on some target values, the average performance over allelements is worse than binary search. By dividing the array in half, binary search ensures that the size of both subarrays are as similar as possible.[14]

Performance of alternative procedure

Each iteration of the binary search procedure defined above makes one or two comparisons, checking if the middle element is equal to the target in each iteration. Assuming that each element is equally likely to be searched, each iteration makes 1.5 comparisons on average. A variation of the algorithm checks whether the middle element is equal to the target at the end of the search. On average, this eliminates half a comparison from each iteration. This slightly cuts the time taken per iteration on most computers. However, it guarantees that the search takes the maximum number of iterations, on average adding one iteration to the search. Because the comparison loop is performed only  times in the worst case, the slight increase in efficiency per iteration does not compensate for the extra iteration for all but enormous .[c][17][18]

Binary search versus other schemes

Sorted arrays with binary search are a very inefficient solution when insertion and deletion operations are interleaved with retrieval, taking  time for each such operation. In addition, sorted arrays can complicate memory use especially when elements are often inserted into the array.[19] There are other data structures that support much more efficient insertion and deletion. Binary search can be used to perform exact matching and set membership (determining whether a target value is in a collection of values). There are data structures that support faster exact matching and set membership. However, unlike many other searching schemes, binary search can be used for efficient approximate matching, usually performing such matches in  time regardless of the type or structure of the values themselves.[20] In addition, there are some operations, like finding the smallest and largest element, that can be performed efficiently on a sorted array.[11]

Hashing

For implementing associative arrayshash tables, a data structure that maps keys to records using a hash function, are generally faster than binary search on a sorted array of records.[21] Most hash table implementations require only amortized constant time on average.[d][23] However, hashing is not useful for approximate matches, such as computing the next-smallest, next-largest, and nearest key, as the only information given on a failed search is that the target is not present in any record.[24]Binary search is ideal for such matches, performing them in logarithmic time. Binary search also supports approximate matches. Some operations, like finding the smallest and largest element, can be done efficiently on sorted arrays but not on hash tables.[20]

Trees

Binary search trees are searched using an algorithm similar to binary search.
binary search tree is a binary tree data structure that works based on the principle of binary search. The records of the tree are arranged in sorted order, and each record in the tree can be searched using an algorithm similar to binary search, taking on average logarithmic time. Insertion and deletion also require on average logarithmic time in binary search trees. This can be faster than the linear time insertion and deletion of sorted arrays, and binary trees retain the ability to perform all the operations possible on a sorted array, including range and approximate queries.[20][25]
However, binary search is usually more efficient for searching as binary search trees will most likely be imperfectly balanced, resulting in slightly worse performance than binary search. This even applies to balanced binary search trees, binary search trees that balance their own nodes, because they rarely produce optimally-balanced trees. Although unlikely, the tree may be severely imbalanced with few internal nodes with two children, resulting in the average and worst-case search time approaching  comparisons.[e] Binary search trees take more space than sorted arrays.[27]
Binary search trees lend themselves to fast searching in external memory stored in hard disks, as binary search trees can efficiently be structured in filesystems. The B-tree generalizes this method of tree organization. B-trees are frequently used to organize long-term storage such as databases and filesystems.[28][29]

Linear search

Linear search is a simple search algorithm that checks every record until it finds the target value. Linear search can be done on a linked list, which allows for faster insertion and deletion than an array. Binary search is faster than linear search for sorted arrays except if the array is short, although the array needs to be sorted beforehand.[f][31] All sorting algorithms based on comparing elements, such as quicksort and merge sort, require at least  comparisons in the worst case.[32]Unlike linear search, binary search can be used for efficient approximate matching. There are operations such as finding the smallest and largest element that can be done efficiently on a sorted array but not on an unsorted array.[33]

Set membership algorithms

A related problem to search is set membership. Any algorithm that does lookup, like binary search, can also be used for set membership. There are other algorithms that are more specifically suited for set membership. A bit array is the simplest, useful when the range of keys is limited. It compactly stores a collection of bits, with each bit representing a single key within the range of keys. Bit arrays are very fast, requiring only  time.[34] The Judy1 type of Judy array handles 64-bit keys efficiently.[35]
For approximate results, Bloom filters, another probabilistic data structure based on hashing, store a set of keys by encoding the keys using a bit array and multiple hash functions. Bloom filters are much more space-efficient than bit arrays in most cases and not much slower: with  hash functions, membership queries require only  time. However, Bloom filters suffer from false positives.[g][h][37]

Other data structures

There exist data structures that may improve on binary search in some cases for both searching and other operations available for sorted arrays. For example, searches, approximate matches, and the operations available to sorted arrays can be performed more efficiently than binary search on specialized data structures such as van Emde Boas treesfusion treestries, and bit arrays. These specialized data structures are usually only faster because they take advantage of the properties of keys with a certain attribute (usually keys that are small integers), and thus will be time or space consuming for keys that lack that attribute.[20] As long as the keys can be ordered, these operations can always be done at least efficiently on a sorted array regardless of the keys. Some structures, such as Judy arrays, use a combination of approaches to mitigate this while retaining efficiency and the ability to perform approximate matching.[35]

Variations

Uniform binary search

Uniform binary search stores the difference between the current and the two next possible middle elements instead of specific bounds.
Uniform binary search stores, instead of the lower and upper bounds, the index of the middle element and the change in the middle element from the current iteration to the next iteration. Each step reduces the change by about half. For example, if the array to be searched is , the middle element would be . Uniform binary search works on the basis that the difference between the index of middle element of the array and the left and right subarrays is the same. In this case, the middle element of the left subarray () is  and the middle element of the right subarray () is . Uniform binary search would store the value of  as both indices differ from  by this same amount.[38] To reduce the search space, the algorithm either adds or subtracts this change from the middle element. The main advantage of uniform binary search is that the procedure can store a table of the differences between indices for each iteration of the procedure. Uniform binary search may be faster on systems where it is inefficient to calculate the midpoint, such as on decimal computers.[39]

Exponential search

Visualization of exponential searching finding the upper bound for the subsequent binary search
Exponential search extends binary search to unbounded lists. It starts by finding the first element with an index that is both a power of two and greater than the target value. Afterwards, it sets that index as the upper bound, and switches to binary search. A search takes  iterations of the exponential search and at most  iterations of the binary search, where  is the position of the target value. Exponential search works on bounded lists, but becomes an improvement over binary search only if the target value lies near the beginning of the array.[40]

Interpolation search

Visualization of interpolation search. In this case, no searching is needed because the estimate of the target's location within the array is correct. Other implementations may specify another function for estimating the target's location.
Instead of calculating the midpoint, interpolation search estimates the position of the target value, taking into account the lowest and highest elements in the array as well as length of the array. This is only possible if the array elements are numbers. It works on the basis that the midpoint is not the best guess in many cases. For example, if the target value is close to the highest element in the array, it is likely to be located near the end of the array.[41] When the distribution of the array elements is uniform or near uniform, it makes  comparisons.[41][42][43]
In practice, interpolation search is slower than binary search for small arrays, as interpolation search requires extra computation. Its time complexity grows more slowly than binary search, but this only compensates for the extra computation for large arrays.[41]

Fractional cascading

In fractional cascading, each array has pointers to every second element of another array, so only one binary search has to be performed to search all the arrays.
Fractional cascading is a technique that speeds up binary searches for the same element in multiple sorted arrays. Searching each array separately requires  time, where  is the number of arrays. Fractional cascading reduces this to  by storing specific information in each array about each element and its position in the other arrays.[44][45]
Fractional cascading was originally developed to efficiently solve various computational geometry problems. Fractional cascading has been applied elsewhere, such as in data mining and Internet Protocol routing.[44]

Noisy binary search

In noisy binary search, there is a certain probability that a comparison is incorrect.
Noisy binary search algorithms solve the case where the algorithm cannot reliably compare elements of the array. For each pair of elements, there is a certain probability that the algorithm makes the wrong comparison. Noisy binary search can find the correct position of the target with a given probability that controls the reliability of the yielded position.[i][j][49][50]

Quantum binary search

Classical computers are bounded to the worst case of exactly  iterations when performing binary search. Quantum algorithms for binary search are still bounded to a proportion of  queries (representing iterations of the classical procedure), but the constant factor is less than one, providing for faster performance on quantum computers. Any exact quantum binary search procedure—that is, a procedure that always yields the correct result—requires at least  queries in the worst case, where  is the natural logarithm.[51] There is an exact quantum binary search procedure that runs in  queries in the worst case.[52] In comparison, Grover's algorithm is the optimal quantum algorithm for searching an unordered list of elements, and it requires  queries.[53]

History

In 1946, John Mauchly made the first mention of binary search as part of the Moore School Lectures, a seminal and foundational college course in computing.[9] In 1957, William Wesley Peterson published the first method for interpolation search.[9][54] Every published binary search algorithm worked only for arrays whose length is one less than a power of two[k] until 1960, when Derrick Henry Lehmer published a binary search algorithm that worked on all arrays.[56] In 1962, Hermann Bottenbruch presented an ALGOL 60 implementation of binary search that placed the comparison for equality at the end, increasing the average number of iterations by one, but reducing to one the number of comparisons per iteration.[8] The uniform binary search was developed by A. K. Chandra of Stanford University in 1971.[9] In 1986, Bernard Chazelle and Leonidas J. Guibas introduced fractional cascading as a method to solve numerous search problems in computational geometry.[44][57][58]

Implementation issues

Although the basic idea of binary search is comparatively straightforward, the details can be surprisingly tricky ... — Donald Knuth[2]
When Jon Bentley assigned binary search as a problem in a course for professional programmers, he found that ninety percent failed to provide a correct solution after several hours of working on it, mainly because the incorrect implementations failed to run or returned a wrong answer in rare edge cases.[59] A study published in 1988 shows that accurate code for it is only found in five out of twenty textbooks.[60] Furthermore, Bentley's own implementation of binary search, published in his 1986 book Programming Pearls, contained an overflow error that remained undetected for over twenty years. The Java programming language library implementation of binary search had the same overflow bug for more than nine years.[61]
In a practical implementation, the variables used to represent the indices will often be of fixed size, and this can result in an arithmetic overflow for very large arrays. If the midpoint of the span is calculated as , then the value of  may exceed the range of integers of the data type used to store the midpoint, even if  and  are within the range. If  and  are nonnegative, this can be avoided by calculating the midpoint as .[62]
If the target value is greater than the greatest value in the array, and the last index of the array is the maximum representable value of , the value of  will eventually become too large and overflow. A similar problem will occur if the target value is smaller than the least value in the array and the first index of the array is the smallest representable value of . In particular, this means that  must not be an unsigned type if the array starts with index .[60][62]
An infinite loop may occur if the exit conditions for the loop are not defined correctly. Once  exceeds , the search has failed and must convey the failure of the search. In addition, the loop must be exited when the target element is found, or in the case of an implementation where this check is moved to the end, checks for whether the search was successful or failed at the end must be in place. Bentley found that most of the programmers who incorrectly implemented binary search made an error in defining the exit conditions.[8][63]

Library support

Many languages' standard libraries include binary search routines:
  • C provides the function bsearch() in its standard library, which is typically implemented via binary search, although the official standard does not require it so.[64]
  • C++'s Standard Template Library provides the functions binary_search()lower_bound()upper_bound() and equal_range().[65]
  • COBOL provides the SEARCH ALL verb for performing binary searches on COBOL ordered tables.[66]
  • Go's sort standard library package contains the functions SearchSearchIntsSearchFloat64s, and SearchStrings, which implement general binary search, as well as specific implementations for searching slices of integers, floating-point numbers, and strings, respectively.[67]
  • Java offers a set of overloaded binarySearch() static methods in the classes Arrays and Collections in the standard java.util package for performing binary searches on Java arrays and on Lists, respectively.[68][69]
  • Microsoft's .NET Framework 2.0 offers static generic versions of the binary search algorithm in its collection base classes. An example would be System.Array's method BinarySearch<T>(T[] array, T value).[70]
  • For Objective-C, the Cocoa framework provides the NSArray -indexOfObject:inSortedRange:options:usingComparator: method in Mac OS X 10.6+.[71]Apple's Core Foundation C framework also contains a CFArrayBSearchValues() function.[72]
  • Python provides the bisect module.[73]
  • Ruby's Array class includes a bsearch method with built-in approximate matching.[74]

Share:

0 Comments