-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBinary-Search-Tree.cpp
83 lines (80 loc) · 1.32 KB
/
Binary-Search-Tree.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include<bits/stdc++.h>
using namespace std;
struct Binary
{
int data;
Binary *left;
Binary *right;
};
Binary *newNode (int data)
{
Binary *node = new Binary ();
node->data = data;
node->left = node->right = NULL;
return node;
}
Binary *insert (Binary * root, int data)
{
if (root == NULL)
{
root = newNode (data);
}
else if (data <= root->data)
{
root->left = insert (root->left, data);
}
else
{
root->right = insert (root->right, data);
}
return root;
}
bool Search (Binary * root, int data)
{
if (root == NULL)
{
return false;
}
else if (root->data == data)
{
return true;
}
else if (data <= root->data)
{
return Search (root->left, data);
}
else
{
return Search (root->right, data);
}
}
int main ()
{
int i, a[100];
for (i = 0; i < 5; i++)
{
cin >> a[i];
}
Binary *root;
root = NULL;
for (i = 0; i < 5; i++)
{
root = insert (root, a[i]);
}
int no;
cout << "enter the number be searched" << endl;
cin >> no;
if (Search (root, no) == true)
{
cout << "Found\n";
}
else
{
cout << "Not Found\n";
}
// root = insert(root,15);
// root = insert(root,15);
// root = insert(root,15);
// root = insert(root,15);
// root = insert(root,15);
}