-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremove.txt
186 lines (159 loc) · 3.72 KB
/
remove.txt
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
183
184
185
186
void BST::remove_BST(int k)
{
Node_BST* current = root;
Node_BST* temp;
while (current != nullptr && current->key != k)
{
//parent = current;
if (k < current->key) {
current = current->left;
}
else {
current = current->right;
}
}
//iterujemy po wezlach, szukajac tego o kluczu k
//while (current)
//{
//znalezlismy szukany wezel
if (current->key == k)
{
//jezeli wezel jest korzeniem - usuwamy go i ustawaimy indeks tablicy na is_epmty
if (current == root)
{
root = nullptr;
size_BST = 0;
if (size_BST == 0)
{
is_empty = true;
}
delete current;
return;
}
//usuwany wezel nie ma dzieci
if ((current->left == nullptr) && (current->right == nullptr))
{
//w zalenosci czy wezel jes lewym czy prawym dzieckiem swojego rodzica, ustawiamy dziecko rodzica na nullptr
if (current->parent->left == current)
{
current->parent->left = nullptr;
}
else if (current->parent->right == current)
{
current->parent->right = nullptr;
}
size_BST--;
if (size_BST == 0)
{
is_empty = true;
}
delete current;
return;
}
//usuwany wezel ma jedno dziecko
if ((current->left != nullptr) && (current->right == nullptr))
{
temp = current->left;
//w zalenosci czy wezel jes lewym czy prawym dzieckiem swojego rodzica, ustawiamy dziecko rodzica na dziecko current
if (current->parent->left == current)
{
current->parent->left = temp;
}
else if (current->parent->right == current)
{
current->parent->right = temp;
}
temp->parent = current->parent;
size_BST--;
if (size_BST == 0)
{
is_empty = true;
}
delete current;
return;
}
else if ((current->left == nullptr) && (current->right != nullptr))
{
temp = current->right;
//w zalenosci czy wezel jes lewym czy prawym dzieckiem swojego rodzica, ustawiamy dziecko rodzica na dziecko current
if (current->parent->left == current)
{
current->parent->left = temp;
}
else if (current->parent->right == current)
{
current->parent->right = temp;
}
temp->parent = current->parent;
size_BST--;
if (size_BST == 0)
{
is_empty = true;
}
delete current;
return;
}
//usuwany wezel ma dwoje dzieci
if ((current->left != nullptr) && (current->right != nullptr))
{
Node_BST* successorParent = current;
Node_BST* successor = current->right;
//szukamy nastepnika dla wezla usuwanego (nastepnik nigdy nie posiada lewego syna)
while (successor->left != nullptr)
{
successorParent = successor;
successor = successor->left;
}
//jeśli następnik nie jest bezpośrednim prawym dzieckiem usuwanego węzła
if (successorParent != current)
{
successorParent->left = successor->right;
if (successor->right != nullptr)
{
successor->right->parent = successorParent;
}
successor->right = current->right;
current->right->parent = successor;
}
//przestawienie referencji rodzica usuwanego węzła
if (current != root)
{
if (current == current->parent->left)
{
current->parent->left = successor;
}
else
{
current->parent->right = successor;
}
}
else
{
root = successor;
}
successor->left = current->left;
current->left->parent = successor;
successor->parent = current->parent;
delete current;
size_BST--;
if (size_BST == 0)
{
is_empty = true;
}
return;
}
}
/*//nadal szukamy wezla do usuniecia
else
{
if (k < current->key)
{
current = current->left;
}
else if (k >= current->key)
{
current = current->right;
}
}*/
//}
}