Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 384 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 384 Bytes

Linear Search

The linear search is used to find an item in a list. The items do not have to be in order. To search for an item, start at the beginning of the list and continue searching until either the end of the list is reached or the item is found.

Binary and linear search