Skip to content

vbdane/python-search-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Python Search Algorithms

👋 This repo contains simple search algorithms like Hop search, Interpolation search, Exponential search and Fibonacci search! All algorithms are present as individual methods in the SearchAlgorithms class. Created this repo to teach basics to absolute newbies! Basic explaination of each algorithm is attached below. Following algorithms are included:

1. Linear Search
2. Binary Search(Recursive approach)
3. Exponential Search
4. Interpolation Search
5. Hop Search
6. Fibonacci Search