forked from DarthCoder3200/Data-Structures-and-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbs.cpp
More file actions
35 lines (29 loc) · 654 Bytes
/
bs.cpp
File metadata and controls
35 lines (29 loc) · 654 Bytes
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
#include<iostream>
using namespace std;
int binarySearch(int arr[], int l, int r, int x)
{
if (r >= l)
{
int mid = l + (r - l)/2;
if (arr[mid] == x) return mid;
if (arr[mid] > x) return binarySearch(arr, l, mid-1, x);
return binarySearch(arr, mid+1, r, x);
}
return -1;
}
int main(void)
{
int arr[] = {2, 3, 4, 10, 40};
int n = sizeof(arr)/ sizeof(arr[0]);
printf("Check if a particular key is present\n");
int key;
scanf("%d", &key);
int result = binarySearch(arr, 0, n-1, key);
if (result == -1) {
printf("Element is not present in array\n");
}
else {
printf("Element is present at index %d\n", result);
}
return 0;
}