How does a Binary Search work?
Immediately checks midpoint of list and discards irrelevant half.
How does a Linear Search work?
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.
What are the conditions needed to carry out a Binary search?
The numbers must be ordered.
What can Linear search do that Binary cannot?
Search unordered lists.