-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSource.cpp
executable file
·108 lines (98 loc) · 1.91 KB
/
Source.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
99
100
101
102
103
104
105
106
107
108
#include "Header.h"
IntBinaryTree::IntBinaryTree()
{
empty = true;
_value = 0;
left = nullptr;
right = nullptr;
}
IntBinaryTree::IntBinaryTree(int value)
{
empty = false;
_value = value;
left = nullptr;
right = nullptr;
}
void IntBinaryTree::_print_this()
{
std::cout << _value << " ";
}
void IntBinaryTree::add(int value)
{
if (value > 0)
{
if (empty)
{
_value = value;
empty = false;
}
else {
if (_value == value)
return;
else if (value > _value)
{
if (right == nullptr)
{
right = new IntBinaryTree(value);
}
else
{
right->add(value);
}
}
else
{
if (left == nullptr)
{
left = new IntBinaryTree(value);
}
else
{
left->add(value);
}
}
}
}
}
void IntBinaryTree::print()
{
if (left != nullptr)
{
left->print();
}
_print_this();
if (right != nullptr)
{
right->print();
}
}
int IntBinaryTree::getValue() const
{
if (empty)
{
throw "Empty tree";
}
return _value;
}
IntBinaryTree* IntBinaryTree::search(int val)
{
if (val == _value)
return this;
else if (val < _value && left != nullptr)
{
left->search(val);
}
else if (val > _value&& right != nullptr)
{
right->search(val);
}
else
return nullptr;
}
IntBinaryTree::~IntBinaryTree()
{
if (left != nullptr)
delete left;
if (right != nullptr)
delete right;
}