Searching algorithms
Searching algorithms are a set of algorithms used to find a particular item in a collection of items. There are several types of searching algorithms available, each with its own advantages and disadvantages. In this project, we will explore the time and space complexity of the various searching algorithms implementations out there and discus the merrits and drawbacks of each.
Read or watch:
By the end of this project, you are expected to be able to explain to anyone Without the help of Google:
- What is a search algorithm
- What is a linear search
- What is a binary search
- What is the best search algorithm to use depending on your needs