-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinarySearchTree.cpp
98 lines (95 loc) · 2.17 KB
/
BinarySearchTree.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <iostream>
using namespace std;
class BSTNode
{
private:
int data;
BSTNode *left = nullptr;
BSTNode *right = nullptr;
BSTNode *GetSupposed(BSTNode *node)
{
if (node->data < data)
{
return left;
}
else if (node->data > data)
{
return right;
}
return nullptr;
}
friend class BinarySearchTree;
public:
BSTNode(int data)
{
this->data = data;
}
~BSTNode() {}
static void Explore(BSTNode *node)
{
if (node)
{
Explore(node->right);
cout << node->data << endl;
Explore(node->left);
}
}
};
class BinarySearchTree
{
private:
BSTNode *root = nullptr;
public:
BinarySearchTree() {}
~BinarySearchTree() {}
void AddNode(BSTNode *node)
{
if (node)
{
if (!root)
{
root = node;
}
else
{
BSTNode *active = root;
while (active->GetSupposed(node))
{
active = active->GetSupposed(node);
}
if (active->data > node->data)
{
active->left = node;
cout << endl
<< active->data << "'s left is " << node->data << endl;
}
else if (active->data < node->data)
{
active->right = node;
cout << endl
<< active->data << "'s right is " << node->data << endl;
}
}
}
}
void Explore()
{
cout << endl
<< "Root is" << root->data << endl;
BSTNode::Explore(root);
}
};
int main()
{
BinarySearchTree *tree = new BinarySearchTree();
tree->AddNode(new BSTNode(3));
tree->AddNode(new BSTNode(9));
tree->AddNode(new BSTNode(7));
tree->AddNode(new BSTNode(2));
tree->AddNode(new BSTNode(4));
tree->AddNode(new BSTNode(8));
tree->AddNode(new BSTNode(1));
tree->AddNode(new BSTNode(0));
cout << "Done";
tree->Explore();
}