Slide 6.2: A C++ program for sequential searches
Slide 6.4: Unix tools for sequential processing
Home

A Sequential Search

A sequential search is a search algorithm for searching a set of unsorted data for a particular value. In sequential search, we start from the beginning of the list, scan down the list, until the desired key is found or we have reached the end of the end of the list.
We have the following conclusions for a sequential search: