bashbers / csharp-algorithms-hacktoberfest2018

Hacktoberfest repository which over time will include loads of c# algorithms.
https://hacktoberfest.digitalocean.com/
3 stars 29 forks source link

Added Exponential Search and Tests #32

Closed Calidia closed 6 years ago

Calidia commented 6 years ago

32 (Exponential Search)

If you can check all of the above, congrats! :sparkles:

Description:

Exponential Search finds the range in which the searched element is instead of searching through the whole sorted array. Once the subset range is found a binary search method is used to determine if the element is within it. The implementation below provides two types of Binary Search - Iterative and Recursive.

bashbers commented 6 years ago

Thank you for contributing!