Function rust_algorithm_club::searching::exponential_search
source · [−]Expand description
Exponential search. An binary search variant that can perform on unbounded sequences and infinite lists.
Use crate::searching::binary_search
as the underlying algorithm.