Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 658 Bytes

README.md

File metadata and controls

10 lines (10 loc) · 658 Bytes

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