forked from nishitpanchal395/projecthactoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinarySearch.cpp
48 lines (46 loc) · 830 Bytes
/
BinarySearch.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
#include<iostream>
using namespace std;
int binarySearch(int arr[],int left,int right,int x)
{
while(left<=right)
{
int mid=left+(right-left)/2;
if(arr[mid]==x)
{
return mid;
}
else if (arr[mid]<x)
{
left=mid+1;
}
else
{
right=mid-1;
}
}
return -1;
}
int main()
{
int size;
cin>>size;
int myarr[size];
int output;
for(int i=0;i<size;i++)
{
cin>>myarr[i];
}
cout<<"enter the element to be searched:"<<endl;
int num;
cin>>num;
output=binarySearch(myarr,0,size-1,num);
if(output==-1)
{
cout<<"no element found"<<endl;
}
else
{
cout<<"element found at index position"<<output<<endl;
}
return 0;
}