-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path01 Binary Search.cpp
65 lines (61 loc) · 1.25 KB
/
01 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
62
63
64
65
#include <iostream>
#include<stdlib.h>
using namespace std;
struct Array
{
int* A;
int size;
int length;
};
// it is a Divinde and conque approach
// Binary Search Using iteration
int BinarySearch(struct Array* arr, int l, int h, int key)
{
int mid;
while (l <= h)
{
mid = (l + h) / 2;
if (key == arr->A[mid])
return mid;
else if (key < arr->A[mid])
h = mid - 1;
else
l = mid + 1;
}
return -1;
}
// Binary Search using Recursion
int RBinarySearch(struct Array* arr, int l, int h, int key)
{
int mid;
if (l <= h)
{
mid = (l + h) / 2;
if (key == arr->A[mid])
return mid;
else if (key < arr->A[mid])
return RBinarySearch(arr, l, mid - 1, key);
else
return RBinarySearch(arr, mid + 1, h, key);
}
return -1;
}
int main()
{
struct Array arr;
cout << "Enter the size of the array " << endl;
cin >> arr.size;
arr.A = new int[arr.size];
int no;
cout << "Enter the length of array " << endl;
cin >> no;
arr.length = 0;
cout << "Enter the elements of the array" << endl;
for (int i = 0; i < no; i++) {
cin >> arr.A[i];
}
arr.length = no;
cout<<"The key is at index "<<BinarySearch(&arr,0,arr.length-1,155)<<endl;
cout<<"The key is at index by recursion is "<<RBinarySearch(&arr,0,arr.length-1,1)<<endl;
return 0;
}