Linear search is a simple searching algorithm. In a linear search, you move from one item to the next in a list, checking each item to see if it’s the one you’re looking for.
Read More..Binary search is a more advanced searching algorithm that only works for sorted data. In a binary search, we’re cutting our search area in half each time.
Read More..