What are the short comings of a binary search methods and sequential search methods?

Answer:
When the list is small the sequential search is faster than a binary search. With a large list the binary search wins the race.

A binary search requires the list to be in sort order, a sequential search does not.

A sequential search is a brute force method.
A binary search is a divide and conquer method.
First answer by Lnr729. Last edit by Lnr729. Contributor trust: 7 [recommend contributor recommended]. Question popularity: 1 [recommend question].