forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Exponential_Search.py
50 lines (34 loc) · 1.16 KB
/
Exponential_Search.py
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
def binSearch( arr, left, right, x):
if right >= left:
mid = left + ( right-left ) / 2
# If the element is present at the middle itself
if arr[mid] == x:
return mid
# If the element is smaller than mid,then it can only be present in the left subarray
if arr[mid] > x:
return binSearch(arr, left, mid - 1, x)
# Else he element can only be present in the right
return binSearch(arr, mid + 1, right, x)
return -1
def exponentialSearch(arr, n, x):
# IF x is present at first location itself
if arr[0] == x:
return 0
# Find range for binary search j by repeated doubling
i = 1
while i < n and arr[i] <= x:
i = i * 2
# Call binary search for the found range
return binSearch( arr, i / 2,
min(i, n), x)
# Driver Code
input = [2, 3, 14, 20, 40]
n = len(input)
x = 20
final = exponentialSearch(input, n, x)
if final == -1:
print "Element not found in thye array"
else:
print "index %d" %(final)
# OUTPUT :
## index 3