Add Exponential Search Algorithm in R#230
Merged
siriak merged 2 commits intoTheAlgorithms:masterfrom Oct 23, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds an implementation of the Exponential Search algorithm for efficiently searching sorted numeric arrays in R. The algorithm uses exponential index doubling to quickly identify a search range, then performs binary search within that range.
Key Changes:
- Adds a new
exponential_search()function with O(log n) time complexity - Includes a helper function
.binary_search_range()for the binary search phase - Provides a demonstration example showing usage on a sorted array
siriak
approved these changes
Oct 23, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces a fully documented implementation of Exponential Search in R, designed for efficient search in sorted numeric arrays.
Overview
The
exponential_searchfunction first identifies a search range by exponentially increasing indices (1, 2, 4, 8, …) until it finds a range where the target may reside. It then performs a binary search within that range to locate the target efficiently. The algorithm returns the 1-based index of the target if found, or-1if the target is absent.Features
-1if the target is not foundComplexity
Demonstration
Run the included example to search for a value in a sorted array. The algorithm outputs the index of the target if present, or indicates that the element is not found.