[+ ] Have you followed the guidelines in our Readme.md document?
[+ ] Have you checked to ensure there aren't other open Pull Requests for the same update/change?
[+ ] Have you created tests for your algorithm?
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.
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.