Fixed grammatical errors (#25341)

This commit is contained in:
eirinisp
2018-11-20 11:24:34 +02:00
committed by Aditya
parent 38e8256f03
commit 740ffdc839

View File

@ -3,8 +3,8 @@ title: Exponential Search
---
## Exponential Search
Exponential Search also known as finger search, searchs for an element in a sorted array by jumping `2^i` elements every iteration where i represents the
value of loop control variable, and then verifying if the search element is present between last jump and the current jump
Exponential Search, also known as finger search, searches for an element in a sorted array by jumping `2^i` elements in every iteration, where i represents the
value of loop control variable, and then verifying if the search element is present between the last jump and the current jump.
# Complexity Worst Case
O(log(N))