Answers for "what makes a linear search inefficient"

C++
1

what is linear search

A linear search is the simplest method of searching a data set. Starting at the beginning of the data set, each item of data is examined until a match is made. Once the item is found, the search ends.
Posted by: Guest on June-28-2021

Browse Popular Code Answers by Language