-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbinary-search.cpp
50 lines (39 loc) · 1.01 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
/*
Copyright (C) Deepali Srivastava - All Rights Reserved
This code is part of DSA course available on CourseGalaxy.com
*/
#include<iostream>
using namespace std;
#define MAX 50
int search(int a[], int n, int searchValue);
int main()
{
int a[MAX], n, searchValue;
cout << "Enter the number of elements : ";
cin >> n;
cout << "Enter the elements in sorted order : \n";
for( int i=0; i<n; i++ )
cin >> a[i];
cout << "Enter the search value : ";
cin >> searchValue;
int index = search(a, n, searchValue);
if( index == -1 )
cout << searchValue << " not present in the array\n";
else
cout << searchValue << " present at index " << index << "\n";
}
int search(int a[], int n, int searchValue)
{
int first=0, last=n-1, mid;
while( first <= last )
{
mid = (first + last)/2;
if( searchValue < a[mid] )
last = mid-1; /* Search in left half */
else if( searchValue > a[mid] )
first = mid+1; /* Search in right half */
else
return mid; /* searchValue present at index mid */
}
return -1;
}