forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ternary_Search.cpp
61 lines (46 loc) · 1.33 KB
/
Ternary_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;
//Function for Ternary Search
int Ternary_Search(int array[], int left, int right, int desired)
{
if(right >= left)
{
int mid1 = left + (right - left) / 3;
int mid2 = mid1 + (right - left) / 3;
// If x is present at the mid1
if(array[mid1] == desired)
return mid1;
// If x is present at the mid2
if(array[mid2] == desired)
return mid2;
// If x is present in left one-third
if(array[mid1] > desired)
return Ternary_Search(array, left, mid1 - 1, desired);
// If x is present in right one-third
if(array[mid2] < desired)
return Ternary_Search(array, mid2 + 1, right, desired);
// If x is present in middle one-third
return Ternary_Search(array, mid1 + 1, mid2 - 1, desired);
}
// We reach here when element is not present in array
return -1;
}
int main()
{
int array[] = {1, 2, 3, 4, 5, 6, 7};
// Element 4 to be searched
if(Ternary_Search(array, 0, 6, 4) != -1)
cout << "Found" << endl;
else
cout << "Not Found" << endl;
//Element 9 to be searched
if(Ternary_Search(array, 0, 6, 9) != -1)
cout << "Found" << endl;
else
cout << "Not Found" << endl;
return 0;
}
/* Output
Found
Not Found
*/