forked from deutranium/Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exponentialSearch.cpp
56 lines (44 loc) · 1.33 KB
/
exponentialSearch.cpp
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
#include <bits/stdc++.h>
using namespace std;
// A recursive binary search function. It returns location of x in given array a[l..r] is present, otherwise -1
int binarySearch(vector<int> &a, int l, int r, int x) {
if (r >= l) {
int mid = l + (r - l)/2;
// If the element is present at the middle itself
if (a[mid] == x)
return mid;
// If element is smaller than mid, then it can only be present in left subarray
if (a[mid] > x)
return binarySearch(a, l, mid-1, x);
// Else the element can only be present in right subarray
return binarySearch(a, mid+1, r, x);
}
// We reach here when element is not present in array
return -1;
}
// Returns position of first occurrence of x in array
int exponentialSearch(vector<int> &a, int n, int x) {
// If x is present at firt location itself
if (a[0] == x)
return 0;
// Find range for binary search by
// repeated doubling
int i = 1;
while (i < n && a[i] <= x)
i = i<<1;
// Call binary search for the found range.
return binarySearch(a, i/2, min(i, n), x);
}
// Driver code
int main() {
vector<int> a = {2, 5, 6, 7, 9, 15, 23, 24, 89};
int n = a.size();
int x = 15;
int result = exponentialSearch(a, n, x);
if(result != -1) {
cout << "\nElement found at index: " << result << '\n';
}
else {
cout << "\nElement not found!\n";
}
}