-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinarySearch2.cpp
45 lines (37 loc) · 876 Bytes
/
BinarySearch2.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
#include <iostream>
#include <vector>
using namespace std;
// Recursive method
int binarySearch(vector<int> arr, int tar, int st, int end)
{
if (st <= end)
{
int mid = st + (end - st) / 2;
if (tar > arr[mid])
{
return binarySearch(arr, tar, mid + 1, end);
}
else if (tar < arr[mid])
{
return binarySearch(arr, tar, st, mid - 1);
}
else
{
return mid;
}
}
return -1;
}
int main()
{
vector<int> arr1 = {-1, 0, 3, 4, 5, 9, 12}; // even
int tar1 = 12;
int st1 = 0, end = arr1.size() - 1;
cout << binarySearch(arr1, tar1, st1, end) << endl;
vector<int> arr2 = {-1, 0, 3, 5, 9, 12}; // odd
int tar2 = 0;
int st2 = 0;
end = arr2.size() - 1;
cout << binarySearch(arr2, tar2, st2, end) << endl;
return 0;
}