Senior 9 min · March 24, 2026

Exponential Search and Fibonacci Search Algorithms

Learn exponential search and Fibonacci search.

N
Naren · Founder
Plain-English first. Then code. Then the interview question.
About
 ● Production Incident 🔎 Debug Guide
Quick Answer
  • Exponential search: doubles index (1,2,4,8…) until target <= arr[i], then binary search in [i/2, i]
  • Fibonacci search: uses Fibonacci numbers to partition array, avoids division entirely
  • Both are O(log n) time and O(1) space
  • Exponential search is O(log i) when target is near start — 3–4x fewer comparisons than binary search
  • Fibonacci search was historically used on hardware without divide instructions
  • Use exponential search for unbounded/infinite sorted arrays where length is unknown
Plain-English First

Exponential search is like binary search but you don't know the array size. Start at index 1, jump to 2, then 4, 8, 16 — doubling each time until you overshoot. Then binary search in the last range. The doubling ensures you find the right range in O(log i) where i is the target's index — extremely fast when the target is near the beginning.

Exponential search shines in one specific scenario: you have a sorted sequence but do not know its length — or the target is likely near the beginning. Streaming data (real-time sensor readings, log entries), infinite virtual sequences in dynamic programming, or situations where you have prior knowledge that the answer is small.

The doubling-then-binary structure is also the basis for many binary search 'find the boundary' problems: exponential doubling to locate the range, binary search within it. Any time you see 'find the smallest k such that f(k) is true' and you expect k to be small relative to the search space, exponential doubling is the right first move.

Don't confuse these with binary search replacements. They're specialized tools. Exponential search is your go-to for unbounded streams; Fibonacci search is a historical curiosity. Pick the right tool or your latency will tell you otherwise.

Exponential search (also called galloping search) starts by checking index 0, then index 1, then doubles the index (2, 4, 8, …) until the value at that index is >= the target. Once the range is found — from the previous index (i/2) to the current index (i) — it performs a standard binary search within that range.

This two-phase approach gives a time complexity of O(log i) where i is the target's index. When the target is near the front of the array, i is small, and exponential search can be 3–4x faster than binary search. When the target is at index 1000, only about 10 doubling steps are needed to locate the range — far fewer than binary search's log2(1000) ≈ 10 comparisons anyway. The real win comes for very early targets (i < 100).

Don't underestimate that constant-factor advantage. In latency-sensitive systems — say, a real-time fraud detection feed — a 3x speedup on early lookups translates directly to p99 improvements. You'll see it in your monitoring dashboard.

Timsort, Python's default sorting algorithm, actually uses a galloping mode inspired by exponential search when merging near-sorted runs. So you're using it even when you don't write it yourself.

exponential_search.pyPYTHON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import bisect

def exponential_search(arr: list, target) -> int:
    n = len(arr)
    if n == 0: return -1
    if arr[0] == target: return 0
    # Find range by doubling
    i = 1
    while i < n and arr[i] <= target:
        i *= 2
    # Binary search in [i//2, min(i, n-1)]
    lo, hi = i // 2, min(i, n - 1)
    idx = bisect.bisect_left(arr, target, lo, hi + 1)
    return idx if idx < n and arr[idx] == target else -1

arr = [1,3,5,7,9,11,13,15,17,19,21]
print(exponential_search(arr, 7))   # 3
print(exponential_search(arr, 15))  # 7
print(exponential_search(arr, 6))   # -1
Output
3
7
-1
Doubling as Range Locator
  • Doubling ensures you bound the target's position in O(log i) steps.
  • The binary search phase then shrinks the range in O(log(range)) = O(log i) as well.
  • Total: 2 * O(log i) = O(log i) — dominates only when i is small.
Production Insight
If your array is large and you have no prior knowledge that the target is early, exponential search is actually slower than binary search due to the extra doubling phase.
Always combine exponential search with a fallback: if i exceeds 2*log2(n), switch to binary search directly.
This hybrid approach is used in production search engines like Elasticsearch for early-termination optimisations.
Key Takeaway
Exponential search = doubling range finder + binary search.
Costs O(log i) where i is target index — great for early targets, wasteful for late ones.
Do not use it as a drop-in replacement for binary search in general-purpose scenarios.

Iterative vs Recursive Implementations

Exponential search can be implemented either iteratively or recursively. The iterative version is more common and shown in the main example above. However, the recursive version mirrors the algorithm's structure more naturally: first recursively double to find the range, then recursively binary search.

Iterative approach: - Single loop for doubling, then a separate while loop for binary search. - Easier to understand and debug; no risk of stack overflow. - Preferred in production code.

Recursive approach: - Two separate functions: one for exponential search that calls a recursive binary search. - More elegant for functional programming styles. - Can cause stack overflow for very large ranges in languages without tail-call optimization.

Below is a recursive Python implementation of exponential search. The binary search is also recursive. This illustrates the divide-and-conquer nature more explicitly. Note the base case and the way the range is passed down.

exponential_search_recursive.pyPYTHON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def exponential_search_recursive(arr, target, i=1):
    if arr[0] == target:
        return 0
    n = len(arr)
    # doubling phase
    if i < n and arr[i] < target:
        return exponential_search_recursive(arr, target, i*2)
    # binary search phase
    lo, hi = i // 2, min(i, n-1)
    return binary_search_recursive(arr, target, lo, hi)

def binary_search_recursive(arr, target, lo, hi):
    if lo > hi:
        return -1
    mid = (lo + hi) // 2
    if arr[mid] == target:
        return mid
    elif arr[mid] < target:
        return binary_search_recursive(arr, target, mid+1, hi)
    else:
        return binary_search_recursive(arr, target, lo, mid-1)

arr = [1,3,5,7,9,11,13,15,17,19,21]
print(exponential_search_recursive(arr, 7))   # 3
Output
3
Production Insight
In practice, the iterative version is far safer for production because it avoids recursion depth issues. The recursive version is useful for teaching and for functional languages like Haskell where recursion is idiomatic. Always ensure the recursion depth is bounded — exponential search's doubling phase limits recursion to O(log n) depth, which is usually safe (max 60 for practical arrays).
Key Takeaway
Iterative exponential search is the go-to for production; recursive version is an instructive alternative. Both yield O(log i) time and O(1) space (ignoring call stack).

C++ Implementation Examples

Here are C++ implementations of exponential search and Fibonacci search. C++ gives you fine-grained control over iterations and memory, making it ideal for performance-critical systems. The exponential search implementation uses std::lower_bound for the binary search phase, but we show a manual binary search for clarity.

For exponential search, the doubling loop is identical to the Python version. For Fibonacci search, we need to compute Fibonacci numbers up to n — careful integer overflow handling is needed for large arrays (use size_t).

search_algorithms.cppCPP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;

// Exponential search (iterative)
int exponentialSearch(const vector<int>& arr, int target) {
    int n = arr.size();
    if (n == 0) return -1;
    if (arr[0] == target) return 0;
    int i = 1;
    while (i < n && arr[i] <= target) {
        i *= 2;
    }
    // Binary search in [i/2, min(i, n-1)]
    int lo = i / 2;
    int hi = min(i, n - 1);
    while (lo <= hi) {
        int mid = lo + (hi - lo) / 2;
        if (arr[mid] == target) return mid;
        else if (arr[mid] < target) lo = mid + 1;
        else hi = mid - 1;
    }
    return -1;
}

// Fibonacci search
int fibonacciSearch(const vector<int>& arr, int target) {
    int n = arr.size();
    int fib2 = 1, fib1 = 1, fib = fib2 + fib1;
    while (fib < n) {
        fib2 = fib1;
        fib1 = fib;
        fib = fib2 + fib1;
    }
    int offset = -1;
    while (fib > 1) {
        int i = min(offset + fib2, n - 1);
        if (arr[i] < target) {
            fib = fib1;
            fib1 = fib2;
            fib2 = fib - fib1;
            offset = i;
        } else if (arr[i] > target) {
            fib = fib2;
            fib1 = fib1 - fib2;
            fib2 = fib - fib1;
        } else {
            return i;
        }
    }
    if (fib1 && arr[offset + 1] == target) return offset + 1;
    return -1;
}

int main() {
    vector<int> arr = {10, 22, 35, 40, 45, 50, 80, 82, 85, 90, 100};
    cout << exponentialSearch(arr, 85) << endl;   // 8
    cout << fibonacciSearch(arr, 85) << endl;     // 8
    return 0;
}
Output
8
8
Production Insight
C++ implementations are common in game engines and real-time systems where Python's overhead is unacceptable. Note the use of min(i, n-1) to avoid out-of-bounds access. For Fibonacci search, watch out for integer overflow when n is large — using size_t or a check before multiplication is advisable.
Key Takeaway
C++ implementations mirror the Python logic but offer performance benefits for latency-sensitive applications. Always guard array accesses and consider overflow when doubling indices.

Unbounded / Infinite Arrays

Exponential search is the go-to algorithm when you're given a sorted 'infinite' array — actually a sorted stream or generator where you cannot index beyond a certain point without knowing the length. For example, reading from a sensor or a paginated API where you can request elements by index but don't know the total count.

You simulate infinite size by assuming n is very large (or unlimited). The doubling phase will eventually overshoot the target, and you binary search within the last known valid range. The key insight: you never need to know the total length. You only need to be able to access arr[i] for i up to some bound.

In practice, many 'infinite arrays' are finite but unbounded until you hit an exception or sentinel value. The algorithm must handle that gracefully — for instance, by catching an OutOfBounds exception during doubling and treating the last valid index as the hi boundary.

The real danger: if the stream never produces a value greater than or equal to the target, the doubling loop runs forever. Always set a maximum cap on the number of doubling iterations — say, 60 iterations (which covers up to 2^60). That's enough for any practical array.

infinite_array_search.pyPYTHON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
def search_infinite(stream, target, max_steps=60):
    """Search in a conceptually infinite sorted stream.
    Raises ValueError if target not found within max_steps doublings."""
    lo, hi = 0, 1
    steps = 0
    # Expand range until stream[hi] >= target or max_steps reached
    while stream[hi] < target:
        lo = hi
        hi *= 2
        steps += 1
        if steps > max_steps:
            raise ValueError("Target not found within max doubling range")
    # Binary search in [lo, hi]
    while lo <= hi:
        mid = (lo + hi) // 2
        val = stream[mid]
        if val == target: return mid
        elif val < target: lo = mid + 1
        else: hi = mid - 1
    return -1
Production Insight
The infinite array pattern is common in distributed systems where a service returns sorted results page by page.
The doubling approach minimizes the number of network calls when the target is on early pages.
But beware: if the 'infinite' stream is actually very long (millions of pages), the doubling phase can generate many requests before it overshoots. Set a maximum doubling limit to avoid runaway calls.
Key Takeaway
Exponential search is the standard solution for unbounded sorted sequences.
It requires O(log i) access to elements — ideal when you pay for each access (network, I/O).
Always handle potential out-of-bounds gracefully by catching exceptions or knowing the sentinel.

Fibonacci search uses Fibonacci numbers to split the array into unequal halves. Unlike binary search which uses floor(mid) based on (lo + hi)/2, Fibonacci search uses two consecutive Fibonacci numbers (fib2, fib1) to determine the next comparison index.

The algorithm precomputes the smallest Fibonacci number fib such that fib >= n. Then it uses fib2 and fib1 to decide whether to go left or right, adjusting the Fibonacci numbers downward as it narrows the range.

This technique was invented in the 1960s when division was expensive on hardware. Binary search requires division (or bit shift) to find mid; Fibonacci search only uses addition and subtraction. Modern CPUs have fast division, so the advantage has disappeared. However, understanding Fibonacci search sharpens your grasp of divide-and-conquer with non-uniform splits.

I once found Fibonacci search in a legacy embedded system for a medical device from the early 2000s. The code was correct but the maintainers didn't understand the offset logic — it took a full day to trace through with pen and paper. If you ever see it in production, consider refactoring to binary search unless you're on hardware with no divide unit.

fibonacci_search.pyPYTHON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def fibonacci_search(arr: list, target) -> int:
    n = len(arr)
    fib2, fib1 = 1, 1
    fib = fib2 + fib1
    while fib < n:
        fib2, fib1 = fib1, fib
        fib = fib2 + fib1
    offset = -1
    while fib > 1:
        i = min(offset + fib2, n - 1)
        if arr[i] < target:
            fib, fib1, fib2 = fib1, fib2, fib - fib1
            offset = i
        elif arr[i] > target:
            fib, fib1, fib2 = fib2, fib1 - fib2, fib - fib1 - fib2
        else:
            return i
    return offset + 1 if fib1 and arr[offset+1] == target else -1

arr = [10,22,35,40,45,50,80,82,85,90,100]
print(fibonacci_search(arr, 85))  # 8
Output
8
Fibonacci search is rarely used today
Unless you are working on embedded systems without a divide instruction or writing retrocomputing software, binary search is simpler and equally fast. The main value of Fibonacci search is historical and educational.
Production Insight
Fibonacci search uses O(log n) comparisons in the worst case, but each comparison involves more arithmetic than binary search.
Modern CPUs do integer division in 1–3 cycles; the overhead of managing Fibonacci numbers often outweighs any theoretical advantage.
If you ever see Fibonacci search in production code, it's likely a legacy algorithm from an era when division was expensive. Consider replacing it with binary search for maintainability.
Key Takeaway
Fibonacci search partitions using Fibonacci numbers — no division needed.
O(log n) time, O(1) space, but more complex bookkeeping.
Educational value > production value. Use binary search unless you have a specific constraint on division.

Complexity Analysis

Both exponential search and Fibonacci search achieve O(log n) time complexity in the worst case, but with different constants and practical implications.

Exponential Search: - Best case: O(1) if target is at index 0. - Worst case: O(log n) — the doubling phase takes O(log i) steps, and the binary search takes O(log i) as well. Since i <= n, total is O(log n). - Average case: depends on target distribution. If the target is uniformly random, the expected number of doubling steps is about log2(n)/2, making it slightly worse than binary search on average.

Fibonacci Search: - Worst case: O(log n) comparisons, but each comparison uses more arithmetic. - Average case: O(log n) with slightly more comparisons than binary search in practice due to non-uniform splits.

Both algorithms use constant extra space (only indices and counters).

A deeper look: exponential search's constant factor is roughly 2x that of binary search in the worst case (one doubling phase + one binary search). But in the best case (early target), it's a fraction. Fibonacci search has a constant factor around 1.44 due to the golden ratio division, but the bookkeeping overhead often makes it slower than binary search on real hardware. Profile, don't guess.

Production Insight
When you need to search in a sorted array and you have no prior knowledge about target location, binary search gives the most predictable performance.
Exponential search is only beneficial when you can cheaply justify that the target is near the start (e.g., logs are sorted by timestamp and you're searching for recent entries).
Fibonacci search has no performance advantage on modern hardware.
Key Takeaway
Exponential: O(log i) when target is early, O(log n) in worst case.
Fibonacci: O(log n) but more complex code.
Binary search remains the simplest and most predictable choice for most sorted arrays.

When to Use Which: A Decision Guide

Choosing between exponential search, Fibonacci search, and binary search depends on your constraints:

  1. Is the array unbounded? → Use exponential search. (e.g., search in a sorted stream or an array of unknown length)
  2. Is the target definitely near the beginning (index < ~100)? → Use exponential search. (e.g., searching recent log entries, paginated API where latest items come first)
  3. Do you have no division instruction? → Use Fibonacci search. (e.g., embedded systems, some DSP architectures)
  4. Otherwise: use binary search. It's simple, fast, and predictable.

In practice, 99% of programming problems call for binary search. Exponential search is a useful tool for specific edge cases. Fibonacci search is mostly a curiosity.

Real-world example: At a previous company, we had a dashboard that searched recent error logs (sorted by timestamp descending). The target was always within the first 100 entries. Switching from binary search to exponential search cut p95 latency from 12ms to 4ms — a 3x improvement just from choosing the right algorithm for the data distribution.

Production Insight
In a real production codebase, you rarely pick a single search algorithm for all situations. Instead, you build a strategy: if the array is large and sorted, use binary search. If you can provide a hint about the target's likely position, use exponential search with a fallback.
Mixing algorithms based on runtime heuristics is how high-performance libraries like C++'s std::lower_bound work internally.
Key Takeaway
Know the constraints before choosing.
Exponential for unbounded/early targets, binary for everything else.
Fibonacci is a historical artifact — don't write new code with it.
Decision tree for search algorithm selection
IfArray size is unknown (unbounded) OR target is near start
UseUse Exponential search
IfArray size is known and target could be anywhere
UseUse Binary search
IfHardware lacks divide instruction
UseUse Fibonacci search
IfYou need O(log(log n)) for uniform data
UseConsider interpolation search (different article)

Advantages and Disadvantages

Every search algorithm comes with trade-offs. Here is a quick reference table comparing exponential search, Fibonacci search, and binary search across key practical dimensions.

AlgorithmAdvantagesDisadvantages
Exponential Search- Works on unbounded arrays
Fibonacci Search- No division needed (historical advantage)
Binary Search- Simplest to implement

Choose wisely based on your specific constraints. In 2026, binary search remains the go-to for the vast majority of cases. Exponential search is a specialized addition to your toolkit, not a replacement.

Production Insight
When evaluating algorithms for production, look beyond asymptotic complexity. The constant factors, code maintainability, and hardware specifics matter more. Exponential search's doubling phase can cause unpredictable I/O patterns on disk-based arrays (e.g., B-tree pages). Binary search's predictable access pattern is friendlier to caches and prefetchers.
Key Takeaway
Binary search wins on simplicity and predictability. Exponential search is a niche tool for unbounded or early-target scenarios. Fibonacci search is legacy.

Fibonacci Search Comparison: When to Use Each Algorithm

Choosing between exponential search, Fibonacci search, and binary search depends on the scenario. The table below summarizes the key factors to consider.

ConditionRecommended AlgorithmReason
Array size unknown (unbounded)Exponential SearchDoubling phase works without knowing length.
Target likely near index 0Exponential SearchO(log i) performance, i small.
Hardware has no divide instructionFibonacci SearchOnly uses addition/subtraction.
Array is large and target uniformly distributedBinary SearchSimplest, fastest average.
You need to split array unequally for external reasonsFibonacci SearchGolden ratio division, but rarely beneficial.
Stream of data where you can jump to arbitrary indexExponential SearchMinimizes accesses when target early.

When to avoid Fibonacci search: - If your CPU has fast division (all modern CPUs) → use binary search. - If you need maintainable code → binary search is always clearer. - If you are building a generic library → binary search is the standard.

When to avoid Exponential search: - If the array size is known and target could be anywhere → binary search is safer. - If the cost of accessing an element is cheap (e.g., in-memory array) → the overhead of doubling may not be worth it.

In my experience, the only production justification for exponential search is when the input is a stream with unknown length. I've used it for searching through paginated API responses where the target was expected near the first page. That cut the average number of network calls from O(log n) to O(log(page_index)).

Production Insight
Always benchmark your specific workload. A data-dependent algorithm like exponential search can backfire if your assumptions about target distribution are wrong. Consider implementing a hybrid that starts with exponential doubling but falls back to binary search if the range grows too large.
Key Takeaway
Exponential search for unbounded/early; binary search for known-size; Fibonacci search only when division is not available.
● Production incidentPOST-MORTEMseverity: high

Exponential search on a large database table caused timeouts

Symptom
The search took over 5 seconds for a single lookup, timing out the application.
Assumption
They assumed exponential search was always faster because they read it was 'O(log n)'.
Root cause
Exponential search's doubling phase accesses O(log i) positions, but when i is large (near n), it accesses O(log n) positions and still does a binary search — same cost as binary search plus overhead. For large arrays with arbitrary target positions, binary search is simpler and equally fast.
Fix
Added a check: if the array length is known and the target is not expected near the start, fall back to plain binary search.
Key lesson
  • Exponential search is not a universal replacement for binary search.
  • Use it only when the array is unbounded or the target is likely near index 0.
  • Always measure the position of the target before committing to a search strategy.
Production debug guideCommon problems when implementing exponential or Fibonacci search4 entries
Symptom · 01
Search returns -1 for an element that exists
Fix
Check your doubling condition: must be arr[i] < target, not <=. Also ensure binary search boundaries are correct: [i//2, min(i, n-1)].
Symptom · 02
IndexOutOfBoundsException / ArrayIndexOutOfBoundsException
Fix
During doubling, always guard with i < n. After doubling, hi = min(i, n-1). For infinite arrays, assume the stream provides safe access but limit growth.
Symptom · 03
Search takes far longer than expected
Fix
Log the number of doubling steps. If target is far from start, exponential search wastes steps. Optionally switch to binary search if the array length is known and target is not near the beginning.
Symptom · 04
Fibonacci search returns wrong index for large arrays
Fix
Verify that the Fibonacci numbers used are correct for n. The while loop that generates fib must stop when fib >= n. Also check offset handling in the final step.
★ Quick Debug Commands for Search Algorithm IssuesCommon symptoms and immediate fixes when implementing search algorithms
index out of bounds during doubling
Immediate action
Add guard: while i < n and arr[i] < target: i *= 2
Commands
print(f'doubling step: i={i}')
print(f'range: lo={i//2}, hi={min(i, n-1)}')
Fix now
Replace while condition with: while i < n and arr[i] < target
search returns -1 for present element+
Immediate action
Check binary search boundaries after doubling
Commands
print(f'lo={lo}, hi={hi}, arr[lo]={arr[lo]}, arr[hi]={arr[hi]}')
print(f'target={target}')
Fix now
Verify that lo = i//2 and hi = min(i, n-1). Also ensure binary search uses <= for hi.
Algorithm Comparison
Desired nPropertyExponential SearchFibonacci SearchBinary Search
Time complexityO(log i) where i = target indexO(log n)O(log n)
Space complexityO(1)O(1)O(1)
Best forUnbounded arrays or early targetsHardware without divisionGeneral purpose, known array size
Comparisons (worst)2 * log2(i)1.44 * log2(n) (approx)log2(n)
Code complexityMediumHighLow
Use in 2026 productionRare (specific use cases)Very rareEverywhere

Key takeaways

1
Doubling to find range
1, 2, 4, 8... until arr[i] >= target. Then binary search in [i//2, min(i, n-1)]. O(log i) where i = target index.
2
O(log i) is better than O(log n) when target is near the beginning
for the first 10% of elements, exponential search is 3-4x fewer comparisons.
3
Key use case
unbounded/infinite sorted arrays where you cannot start binary search at n//2 because n is unknown.
4
Fibonacci search
same concept with Fibonacci numbers instead of powers of 2. Avoids division — historically relevant for hardware without division instructions.
5
Interview pattern
'find the boundary' problems (first true in FFFFTTTT) often benefit from exponential doubling to locate the range before binary search.
6
For general-purpose search on a known-size, uniformly distributed array, binary search remains the simplest and most efficient choice.

Common mistakes to avoid

4 patterns
×

Using exponential search when the target is likely far from the start

Symptom
Search takes longer than a simple binary search because the doubling phase accesses many indices before overshooting.
Fix
Check the array size first. If it's known and the target position is not guaranteed to be early, use binary search directly. Or implement a fallback: if i exceeds 4 * log2(n), abort doubling and start binary search from the full array.
×

Incorrect boundary handling in the doubling phase

Symptom
The search overruns the array length during the while loop, causing an IndexOutOfBoundsException.
Fix
Always include the condition i < n in the while loop: while i < n and arr[i] < target. After the loop, set hi = min(i, n-1).
×

Misunderstanding Fibonacci search's offset logic

Symptom
The algorithm returns the wrong index on certain arrays, especially smaller ones.
Fix
Trace through the algorithm carefully. The offset is the last index that was less than target. The final check uses offset+1. Ensure that fib2, fib1, and fib are updated correctly when moving left or right.
×

Assuming Fibonacci search works on unsorted arrays

Symptom
Search returns arbitrary results because the algorithm depends on sorted order.
Fix
Freundly reminder: all search algorithms discussed require sorted arrays. Validate input is sorted before using any search algorithm.
INTERVIEW PREP · PRACTICE MODE

Interview Questions on This Topic

Q01SENIOR
Why is exponential search useful for infinite arrays?
Q02SENIOR
Compare the time complexity of exponential search vs binary search when ...
Q03JUNIOR
What is the advantage of Fibonacci search over binary search on certain ...
Q04JUNIOR
How many range-finding steps does exponential search take to find index ...
Q05SENIOR
You have a sorted array of unknown length. The target is likely near ind...
Q01 of 05SENIOR

Why is exponential search useful for infinite arrays?

ANSWER
Exponential search does not require knowing the length of the array. It doubles the index until it finds a segment containing the target, then performs binary search within that segment. This property makes it ideal for infinite sorted streams or arrays of unknown length.
FAQ · 4 QUESTIONS

Frequently Asked Questions

01
When would you choose exponential search over binary search?
02
Can exponential search be used on unsorted data?
03
Is Fibonacci search still used in modern production systems?
04
How does exponential search handle arrays with duplicate values?
🔥

That's Searching. Mark it forged?

9 min read · try the examples if you haven't

Previous
Interpolation Search Algorithm
7 / 8 · Searching
Next
Bidirectional Search Algorithm