Stony Brook Algorithm Repository


Searching

Input
Output

Input Description: A set \(S\) of \(n\) keys, a query key \(q\).
Problem: Where is \(q\) in \(S\)?

Excerpt from The Algorithm Design Manual: We treat searching here as a problem distinct from dictionaries because simpler and more efficient solutions emerge when our primary interest is static searching. These little data structures can yield large performance improvements when properly employed in an innermost loop. Also, several of the ideas from list and array searching, such as binary search and self-organization, apply to other problems and justify our attention.

There are two basic approaches to array searching: sequential search and binary search. Both are simple, yet have interesting and subtle variations. In sequential search, we simply start from the front of our list or array of keys and compare each successive item against the key until we find a match or reach the end. In binary search, we start with a sorted array of keys. To search for key \(q\), we compare \(q\) to the middle key \(S_{n/2}\). If \(q\) is before \(S_{n/2}\), it must reside in the top half of our set; if not, it must reside in the bottom half of our set. By repeating this process on the correct half, we find the key in a total of \(\lceil \lg n \rceil\) comparisons. This is a big win over the \(n/2\) comparisons we expect with sequential search.


Implementations

libc++ (rating 10)
libstdc++ (rating 10)
OpenJDK 10 (rating 10)
Go Standard Library (rating 10)
C++ STL (rating 10)
Java Collections (rating 9)
Weisses Data Structure (rating 8)
Handbook of Algorithms and Data Structures (rating 5)
LEDA (rating 5)
Moret and Shapiro's Algorithms P to NP (rating 3)


Recommended Books

Data Structures and Algorithm Analysis in C++ (3rd Edition) by Mark Allen Weiss Handbook of Data Structures and Applications by D. Mehta and S. Sahni The Art of Computer Programming : Sorting and Searching by Donald Knuth
The Art of Computer Programming: Fundamental Algorithms by Donald Knuth Handbook of Algorithms and Data Structures by G. Gonnet and R. Baeza-Yates Constructive Combinatorics by D. Stanton and D. White
The Design and Analysis of Computer Algorithms by A. Aho and J. Hopcroft and J. Ullman

Related Problems


Dictionaries

Sorting


As an Amazon affiliate, I earn from qualifying purchases if you buy from links on this website.


Go To Main Page