-
Notifications
You must be signed in to change notification settings - Fork 0
/
AB.cpp
182 lines (161 loc) · 3.56 KB
/
AB.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include "AB.h"
#include "IteratorAB.h"
#include <exception>
#include <string>
// Teta(1)
AB::AB() {
this->radacina = NULL;
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
AB::AB(const AB& ab) {
this->radacina = copiere(ab.radacina);
}
// Teta(1)
AB::AB(TElem e){
this->radacina = new Nod(e, NULL, NULL);
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
AB::AB(const AB& st, TElem e, const AB& dr){
this->radacina = new Nod(e, copiere(st.radacina), copiere(dr.radacina));
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
PNod AB::copiere(PNod p) const {
if (p != NULL) {
//creez radacina
PNod pNew = new Nod(p->element, NULL, NULL);
pNew->st = copiere(p->st);
pNew->dr = copiere(p->dr);
return pNew;
}
return NULL;
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
void AB::distrugeSubarbori(PNod p) {
if (p != NULL) {
distruge(p->st);
distruge(p->dr);
}
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
void AB::distruge(PNod p) {
if (p != NULL) {
distruge(p->st);
distruge(p->dr);
delete p;
}
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
void AB::adaugaSubSt(const AB& st){
if (this->vid())
throw(exception());
// distrug vechii subarbori ai subarborelui stang
distrugeSubarbori(this->radacina->st);
//copiez noul subarbore
this->radacina->st = copiere(st.radacina);
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
void AB::adaugaSubDr(const AB& dr){
if (this->vid())
throw(exception());
// distrug vechii subarbori ai subarborelui drept
distrugeSubarbori(this->radacina->dr);
//copiez noul subarbore
this->radacina->dr = copiere(dr.radacina);
}
// Teta(1)
TElem AB::element() const{
if (this->vid())
throw(exception());
return this->radacina->element;
}
// Teta(1)
AB AB::stang() const{
if (this->vid())
throw(exception());
AB ab;
ab.radacina = copiere(this->radacina->st);
return ab;
}
// Teta(1)
AB AB::drept() const{
if (this->vid())
throw(exception());
AB ab;
ab.radacina = copiere(this->radacina->dr);
return ab;
}
/// caz favoranil : Teta(1)
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : O(n)
AB::~AB() {
distruge(this->radacina);
}
// Teta(1)
bool AB::vid() const{
return this->radacina == NULL;
}
// Teta(1)
IteratorAB* AB::iterator(string s) const {
if (s=="preordine")
return new IteratorPreordine(*this);
if (s=="inordine")
return new IteratorInordine(*this);
if (s=="postordine")
return new IteratorPostordine(*this);
if (s=="latime")
return new IteratorLatime(*this);
return nullptr;
};
// Complexitate : Teta(n)
/// caz favoranil : Teta(1) daca n e 1
/// caz defavorabil : Teta(n)
/// caz mediu : Teta(n)
/// overall case : Teta(n)
int AB::dif_max_min()
{
if (this->vid())
throw(exception());
// initializam min si max cu radacina
TElem mini = radacina->element, maxi = radacina->element;
// parcurgem arborele prim latime
queue<PNod> q;
// se adauga radacina in coada
q.push(radacina);
// incepem bfs ul
while (!q.empty())
{
PNod aux = q.front();
q.pop();
if (aux->st != NULL)
q.push(aux->st);
if (aux->dr != NULL)
q.push(aux->dr);
if (aux->element > maxi)
maxi = aux->element;
if (aux->element < mini)
mini = aux->element;
}
return maxi - mini;
}