-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchBinaryTree.h
More file actions
438 lines (378 loc) · 6.53 KB
/
SearchBinaryTree.h
File metadata and controls
438 lines (378 loc) · 6.53 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#define _CRT_SECURE_NO_DEPRECATE
#pragma once
#include<iostream>
using namespace std;
template<class K>
struct SearchBinaryTreeNode
{
K _key;
SearchBinaryTreeNode *_left;
SearchBinaryTreeNode *_right;
SearchBinaryTreeNode(const K & x)
:_key(x)
, _left(NULL)
, _right(NULL)
{
}
};
template<class K>
class SearchBinaryTree
{
typedef SearchBinaryTreeNode<K> Node;
public:
SearchBinaryTree()
:_root(NULL)
{
}
~SearchBinaryTree() //后序删除
{
_Destory(_root);
}
bool Insert(const K &x) //搜索二叉树不能有值重复的节点,插入时要识别;
{
if (_root == NULL)
{
_root = new Node(x);
return true;
}
else
{
Node *parent = NULL;
Node *cur = _root;
while (cur)
{
parent = cur;
if (x > cur->_key) //右走
{
cur = cur->_right;
}
else if (x < cur->_key)
{
cur = cur->_left;
}
else
{
return false; //若是重复值,不做插入;
}
}
if (parent->_key > x)
{
parent->_left = new Node(x);
return true;
}
else
{
parent->_right = new Node(x);
return true;
}
}
}
void InOrder() //中序遍历,是升序;
{
_InOrder(_root);
cout << endl;
}
Node * Find(const K &x)
{
Node *cur = _root;
while (cur)
{
if (x > cur->_key)
{
cur = cur->_right;
}
else if (x < cur->_key)
{
cur = cur->_left;
}
else
{
return cur;
}
}
return NULL;
}
bool Remove(const K &x)
{
if (_root == NULL)
return false;
if (_root->_left == NULL && _root->_right == NULL)
{
delete _root;
_root = NULL;
return true;
}
Node * cur = _root;
Node *parent = cur;
while (cur)
{
if (x > cur->_key)
{
parent = cur;
cur = cur->_right;
}
else if (x < cur->_key)
{
parent = cur;
cur = cur->_left;
}
else
{
Node *del = NULL;
//找到节点,进行情况的分类判断;
if (cur->_left == NULL)
{
del = cur;
if (cur == _root)
{
_root = cur->_right;
}
if (parent->_left == cur)
{
parent->_left = cur->_right;
}
else if (parent->_right == cur)
{
parent->_right = cur->_right;
}
}
else if (cur->_right == NULL)
{
del = cur;
if (cur == _root)
{
_root = cur->_left;
}
if (parent->_left == cur)
{
parent->_left = cur->_left;
}
else if (parent->_right == cur)
{
parent->_right = cur->_left;
}
}
else //左右均不为空;
{
//找右子树的最左节点,替换删除
Node * tmp = cur;
parent = cur;
cur = cur->_right; //先进入右子树
while (cur->_left)
{
parent = cur;
cur = cur->_left;
}
swap(tmp->_key, cur->_key); //替换
del = cur;
if (parent->_left == cur)
{
parent->_left = cur->_right;
}
else if (parent->_right = cur)
{
parent->_right = cur->_right;
}
}
delete del;
return true;
}
}
return false;
}
/*递归实现上述几个功能*/
bool InsertR(const K & key)
{
return _InsertR(_root,key);
}
void InOrderR()
{
_InOrder(_root);
cout << endl;
}
const Node * FindR(const K &key)
{
return _FindR(_root, key);
}
bool RemoveR(const K &key)
{
return _RemoveR(_root, key);
}
protected:
bool _InsertR(Node *&root, const K &key)
{
if (root == NULL)
{
root = new Node(key);
return true;
}
if (root->_key < key)
{
return _InsertR(root->_right,key);
}
else if (root->_key > key)
{
return _InsertR(root->_left, key);
}
else
{
return false;
}
}
void _InOrderR(Node * root)
{
if (root == NULL)
return;
_InOrder(root->_left);
cout << root->_key << " ";
_InOrder(root->_right);
}
Node *_FindR(Node *root,const K &key)
{
if (root == NULL)
return NULL;
if (root->_key == key)
{
return root;
}
else if (root->_key < key)
{
return _FindR(root->_right,key);
}
else
{
return _FindR(root->_left, key);
}
}
bool _RemoveR(Node *&root, const K &key) //传引用,指向左右孩子的指针是父亲指向左右孩子指针的别名;
{
if (root == NULL)
return false;
if (root->_key < key)
{
return _RemoveR(root->_right, key);
}
else if (root->_key > key)
{
return _RemoveR(root->_left,key);
}
else //找到节点;
{
Node *del = root;
//三种情况
//1.右为空;
if (root->_left == NULL) //root有两个意义,第一:指向现在这个节点,第二:当前节点的“父亲节点->_left”的引用
{
root = root->_right;
}
else if (root->_right == NULL) //2.左为空
{
root = root->_left;
}
else //3.左右孩子均不为空
{
Node *parent = root;
Node *SubRight = root->_right; //去右子树找最左节点,替换删除;
while (SubRight->_left)
{
parent = SubRight;
SubRight = SubRight->_left;
}
swap(root->_key, SubRight->_key);
del = SubRight;
if (SubRight == parent->_left)
{
parent->_left = SubRight->_right;
}
else if (SubRight == parent->_right)
{
parent->_right = SubRight->_right;
}
}
delete del;
return true;
}
}
protected:
void _InOrder(Node * root)
{
if (root == NULL)
return;
_InOrder(root->_left);
cout << root->_key << " ";
_InOrder(root->_right);
}
void _Destory(Node * root)
{
if (root == NULL)
return;
_Destory(root->_left);
_Destory(root->_right);
delete root;
}
protected:
Node * _root;
};
void TestSBTree() //测试非递归
{
int a[10] = {5,3,4,1,7,8,2,6,0,9};
SearchBinaryTree<int> sbTree;
for (int i = 0; i < 10; i++)
{
sbTree.Insert(a[i]);
}
sbTree.InOrder();
//cout << sbTree.Find(0)->_key << endl;
//cout << sbTree.Find(55) << endl;
sbTree.Remove(0);
sbTree.InOrder();
sbTree.Remove(1);
sbTree.InOrder();
sbTree.Remove(4);
sbTree.InOrder();
sbTree.Remove(5);
sbTree.InOrder();
sbTree.Remove(6);
sbTree.InOrder();
sbTree.Remove(7);
sbTree.InOrder();
sbTree.Remove(2);
sbTree.InOrder();
sbTree.Remove(3);
sbTree.InOrder();
sbTree.Remove(8);
sbTree.InOrder();
sbTree.Remove(9);
sbTree.InOrder();
}
void TestSBTreeR()
{
int a[10] = { 5, 3, 4, 1, 7, 8, 2, 6, 0, 9 };
SearchBinaryTree<int> sbTree;
for (int i = 0; i < 10; i++)
{
sbTree.InsertR(a[i]);
}
sbTree.InOrderR();
//cout << sbTree.FindR(0)->_key << endl;
sbTree.RemoveR(0);
sbTree.InOrderR();
sbTree.RemoveR(1);
sbTree.InOrderR();
sbTree.RemoveR(4);
sbTree.InOrderR();
sbTree.RemoveR(5);
sbTree.InOrderR();
sbTree.RemoveR(6);
sbTree.InOrderR();
sbTree.RemoveR(7);
sbTree.InOrderR();
sbTree.RemoveR(2);
sbTree.InOrderR();
sbTree.RemoveR(3);
sbTree.InOrderR();
sbTree.RemoveR(8);
sbTree.InOrderR();
sbTree.RemoveR(9);
sbTree.InOrderR();
}