Skip to content

Latest commit

 

History

History

0x1E-search_algorithms

img

Searching algorithms

About

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.

Resource

Read or watch:

  1. Searching algorithms
  2. Space complexities
  3. Youtube
  4. Google

Learning objectives

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