-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunitTestTree.cpp
572 lines (465 loc) · 10.5 KB
/
unitTestTree.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
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
#include "test.h"
using namespace std;
//-------------- initialize tree -----------------
void totalNodeTest0() {
RBTree tree;
Cache cache;
for (int i = 0; i < 1000000; ++i) {
tree.add(i, i, cache);
}
for (int i = 0; i < 1000000; ++i) {
if (i % 1000 == 0) {
int total = tree.totalNode();
if (total != 1000000 - i) {
// delete more than one
cout << "remove case fail." << endl;
break;
}
}
Node* node = tree.getRoot();
tree.remove(node->key, cache);
}
}
void totalNodeTest1() {
RBTree tree;
Cache cache;
int count = 0;
for (int i = 0; i < 1000; i++) {
for (int j = 0; j < 1000; j++) {
int key = rand() % 1000 + i * 1000;
count += tree.add(key, key, cache);
}
cache.addNode.clear();
}
int total = tree.getLastPos();
cout << "Total:" << total << endl;
for (int i = 0; i < count; ++i) {
Node* root = tree.getRoot();
tree.remove(root->key, cache);
}
}
void tree0(){
RBTree tree;
}
void tree1(){
RBTree tree(0, 0);
}
//------- zig zag ---------------------------------------
void zig0() {
RBTree tree;
Cache cache;
for (int i = 0; i < 15; ++i) {
tree.add(i, i, cache);
}
tree.print(cache);
Node* node = tree.fetch(3);
tree.zig(node);
cout << endl << endl;
tree.print(cache);
}
void zag0() {
RBTree tree;
Cache cache;
for (int i = 0; i < 15; ++i) {
tree.add(i, i, cache);
}
tree.print(cache);
Node* node = tree.fetch(3);
tree.zag(node);
cout << endl << endl;
tree.print(cache);
}
//---------- isBalance(Node* & node) ---------
void balanceTest0() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
}
void balanceTest1() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
zero->color = RED;
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
tree.setRoot(three);
Node* root = tree.getRoot();
}
//--------------- add new node -------------------------
void treeAdd0(){
RBTree tree;
Cache cache;
// add many keys
for(int i = 0; i < 40; ++i){
tree.add(i, i, cache);
}
}
void treeAdd1(){
RBTree tree;
Cache cache;
// add two same keys
tree.add(0, 0, cache);
tree.add(0, 0, cache);
tree.add(1, -1, cache);
}
//------------- remove node -------------------------
// the smallest node in right subtree is RED
void removeCase0() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
one->color = six->color = four->color = RED;
tree.setRoot(three);
tree.print(cache);
tree.remove(3, cache);
cout << "remove 3" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(3) == NULL)) {
cout << "remove case0 pass." << endl;
}
}
// the smallest node in right subtree is BLACK
void removeCase1() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
tree.setRoot(three);
tree.print(cache);
tree.remove(3, cache);
cout << "remove 3" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(3) == NULL)) {
cout << "remove case1 pass." << endl;
}
}
// no right subtree
// the biggest node in left subtree is RED
void removeCase2() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
//Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
//two->father = one;
//one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
zero->color = five->color = RED;
tree.setRoot(three);
tree.print(cache);
tree.remove(1, cache);
cout << "remove 1" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(1) == NULL) ) {
cout << "remove case2 pass." << endl;
}
}
// no right subtree
// the biggest node in left subtree is BLACK
void removeCase3() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
tree.setRoot(three);
tree.print(cache);
tree.remove(0, cache);
cout << "remove 0" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(0) == NULL) ) {
cout << "remove case3 pass." << endl;
}
}
// no subtree
// node is RED
void removeCase4() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
zero->color = two->color = four->color = six->color = RED;
tree.setRoot(three);
tree.print(cache);
tree.remove(0, cache);
cout << "remove 0" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(0) == NULL)) {
cout << "remove case4 pass." << endl;
}
}
// no subtree
// node is BLACK
void removeCase5() {
RBTree tree;
Cache cache;
Node* zero = new Node(0, 0);
Node* one = new Node(1, 0);
Node* two = new Node(2, 0);
Node* three = new Node(3, 0);
Node* four = new Node(4, 0);
Node* five = new Node(5, 0);
Node* six = new Node(6, 0);
zero->father = one;
one->left = zero;
two->father = one;
one->right = two;
one->father = three;
three->left = one;
four->father = five;
five->left = four;
six->father = five;
five->right = six;
five->father = three;
three->right = five;
tree.setRoot(three);
tree.print(cache);
tree.remove(0, cache);
cout << "remove 0" << endl;
tree.print(cache);
Node* newRoot = tree.getRoot();
if ((tree.fetch(0) == NULL) ) {
cout << "remove case5 pass." << endl;
}
}
void treeRemove0(){
fstream dataFile("largeDataBase.txt");
RBTree tree;
Cache cache;
string line = "";
while (getline(dataFile, line)) {
int pos = line.find(" ");
int key = 0, value = 0;
stringstream ss1, ss2;
ss1 << line.substr(0, pos);
ss2 << line.substr(pos + 1);
ss1 >> key;
ss2 >> value;
tree.add(key, value, cache);
}
int count = 0;
int total = tree.totalNode();
Node* curNode = tree.getRoot();
while (curNode != NULL) {
tree.remove(curNode->key, cache);
curNode = tree.getRoot();
cache.deletePos.pop();
count++;
cout << "temp node total:" << tree.totalNode() << endl;
}
dataFile.close();
cout << "all node: " << total << endl;
cout << "delete for time: " << count << endl;
}
void treeRemove1(){
RBTree tree;
Cache cache;
for(int i = 0; i < 2000; ++i){
tree.add(i, i, cache);
cache.addNode.clear();
}
tree.printSingle(tree.maxNodeOf(tree.getRoot()->left), cache);
int preTotal = 2000;
int newTotal = 2000;
// remove a lot of keys
for (int i = 0; i < 2000; ++i) {
preTotal = newTotal;
Node* curRoot = tree.getRoot();
tree.remove(curRoot->key, cache);
cache.deletePos.pop();
newTotal = tree.totalNode();
if (preTotal - newTotal != 1) {
cout << "root:" << endl;
tree.printSingle(curRoot, cache);
system("pause");
}
else {
cout << "delete!" << endl;
}
}
}
void treeRemove2(){
RBTree tree;
Cache cache;
int count = 0;
int span = 1000;
int times = 1000000 / span;
for (int i = 0; i < times; ++i) {
for (int j = 0; j < span; ++j) {
int key = rand() % span + i * span;
if (tree.add(key, key, cache)) {
count++;
}
}
cache.addNode.clear();
}
for (int i = 0; i < count; ++i) {
if (i % 1000 == 0) {
if (tree.totalNode() != count - i) {
system("pause");
}
}
Node* root = tree.getRoot();
tree.remove(root->key, cache);
}
}
//-------------- fetch node ---------------------------
void treeFetch0(){
RBTree tree;
Cache cache;
Node* node = tree.fetch(0);
tree.printSingle(node, cache);
tree.add(0, 0, cache);
node = tree.fetch(0);
tree.printSingle(node, cache);
}
void treeFetch1(){
RBTree tree;
Cache cache;
for(int i = 0; i < 100; ++i){
tree.add(i, i, cache);
Node* node = tree.fetch(i);
if(node == NULL){
cout << "ERROR!" << endl;
break;
}
}
}
//------------ print node -----------------------
void treePrint0(){
RBTree tree;
Cache cache;
for(int i = 0; i < 9; ++i){
cout << "============================"<<endl;
cout << "root:" << endl;
tree.printSingle(tree.getRoot(), cache);
cout << "the whole tree:" << endl;
tree.print(cache);
}
}
void treePrint1(){
RBTree tree;
Cache cache;
tree.print(cache);
tree.printSingle(NULL, cache);
}