forked from panditakshay402/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinary_search.cpp
32 lines (26 loc) · 911 Bytes
/
Binary_search.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
#include <iostream>
#include <vector>
int binarySearchRecursive(const std::vector<int>& arr, int target, int left, int right) {
if (left > right) {
return -1; // Target not found
}
int mid = left + (right - left) / 2;
if (arr[mid] == target) {
return mid; // Target found at index 'mid'
} else if (arr[mid] < target) {
return binarySearchRecursive(arr, target, mid + 1, right);
} else {
return binarySearchRecursive(arr, target, left, mid - 1);
}
}
int main() {
std::vector<int> arr = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int target = 7;
int result = binarySearchRecursive(arr, target, 0, arr.size() - 1);
if (result != -1) {
std::cout << "Target " << target << " found at index " << result << std::endl;
} else {
std::cout << "Target " << target << " not found in the array." << std::endl;
}
return 0;
}