-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbinary_search.cpp
61 lines (52 loc) · 1.15 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <iostream>
using namespace std;
int binary_search(int a[], int size, int key)
{
int low = 0;
int high = size;
int mid;
while (low <= high)
{
mid = (low+high)/2;
if (key == a[mid])
return mid;
else if (key < a[mid])
high = mid-1;
else
low = mid+1;
}
return -1;
}
int main()
{
int size, index;
cout<<"Enter the Array size : ";
cin>>size;
int a[size];
cout<<"Enter values for sorted array : ";
for (int i = 0; i < size; i++) cin>> a[i];
cout<<"Array : ";
for (int i = 0; i < size; i++) cout<<a[i]<<" ";
int search_value;
cout<<"\nEnter the value to search : ";
cin>>search_value;
index = binary_search(a, size, search_value);
if (index == -1)
cout<<"Search is not in array";
else
cout<<"Search value at Index : "<<index;
return 0;
}
/*
Input: Enter the Array size : 7
Enter values for sorted array : 9
15
26
37
39
52
89
Array : 9 15 26 37 39 52 89
Enter the value to search : 52
Output: Search value at Index : 5
*/