-
Notifications
You must be signed in to change notification settings - Fork 0
/
project3.cc
638 lines (539 loc) · 12.8 KB
/
project3.cc
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
//TODO add stuff here
#include "project3.h"
#include <iomanip>
using namespace std;
/*
* Methods of class ThreadedBinarySearchTree
*
*/
typedef ThreadedBinarySearchTree::Iterator Iterator;
ThreadedBinarySearchTree::ThreadedBinarySearchTree()
: _header(new Node())
{
_header->_lchild = makeThread(_header);
_header->_rchild = _header;
}
/*
* Destructor for the program called when the user enters q
* Ensures all nodes are deleted
* If done correctly we are a good steward of nodes
*/
ThreadedBinarySearchTree::~ThreadedBinarySearchTree()
{
//Adam and Dr Tuck
Iterator it;
Node *tempnode;
for (it = this->inorder_begin(); it != this->end(); it++)
{
tempnode = it._ptr;
delete it._ptr;
}
// delete pointer;
delete _header;
}
/*
* Insert function called when the user calls i in the program
* PARAM-key: the string used to determine tree position
* PARAM-value: value that for the node
*/
void ThreadedBinarySearchTree::insert(string key, int value)
{
//Deal with the case that are first item is the header
if (empty())
{
Node *newnode = new Node();
_header->_lchild = newnode;
newnode->_lchild = makeThread(_header);
newnode->_rchild = makeThread(_header);
newnode->_value = value;
newnode->_key = key;
}
else
{
ThreadedBinarySearchTree::insertr(key, value, _header->_lchild);
}
}
/*
* Recursive insertion called by insert()
* PARAM-key: the string used to determine tree position
* PARAM-value: value that for the node
* PARAM-root: the starting node for each recursion
*/
void ThreadedBinarySearchTree::insertr(string key, int value, Node *& root)
{
if (isThread(root->_lchild) && (key < root->_key))
{
Node *newnode = new Node();
newnode->_lchild = root->_lchild;
newnode->_rchild = makeThread(root);
root->_lchild = newnode;
newnode->_value = value;
newnode->_key = key;
}
else if (isThread(root->_rchild) && (key > root->_key))
{
Node *newnode = new Node();
newnode->_lchild = makeThread(root);
newnode->_rchild = root->_rchild;
root->_rchild = newnode;
newnode->_value = value;
newnode->_key = key;
}
else
{
if (key > root->_key)
{
insertr(key, value, root->_rchild);
}
else if (key < root->_key)
{
insertr(key, value, root->_lchild);
}
}
}
void ThreadedBinarySearchTree::erase(Iterator iter)
{
// if (empty())
// {
// return end();
// }
// else
// {
// Node *tempnode;
// Node *parent = this->parent()._ptr;
// Iterator it;
// for (iter = this->inorder_begin(); iter != this->end(); it++)
// {
// if (key == iter._ptr->_key)
// {
// tempnode = iter._ptr;
//
// if(!isThread(tempnode->_rchild) && isThread(tempnode->_lchild))
// delete iter._ptr;
// else if (isThread(tempnode->_rchild) && !isThread(tempnode->_lchild))
// delete iter._ptr;
// else if(isThread(tempnode->_rchild) && isThread(tempnode->_lchild))
// delete iter._ptr;
// else
// delete iter._ptr;
//
// }
// }
// return end();
// }
//return end();
}
/*
* Test to see if the function is empty()
*
* RETURN-true: if the header is the only node
* RETURN-false: if there is atleast one node and the header
*/
bool ThreadedBinarySearchTree::empty() const
{
if (makePointer(_header->_lchild) == _header)
{
return true;
}
else
{
return false;
}
}
/*
* Lookup function called when the user enter l
* PARAM-key: the string used to determine tree position
* RETURN-iterator: at the desired node based on key
*/
Iterator ThreadedBinarySearchTree::lookup(string key) const
{
if (empty())
{
return end();
}
else
{
Iterator it;
for (it = this->inorder_begin(); it != this->end(); it++)
{
if (key == it._ptr->_key)
{
return it;
}
}
return end();
}
}
Iterator ThreadedBinarySearchTree::inorder_begin() const
{
return Iterator(_header, _header, Iterator::INORDER).insucc();
}
Iterator ThreadedBinarySearchTree::inorder_rbegin() const
{
return Iterator(_header, _header, Iterator::INORDER).inpred();
}
Iterator ThreadedBinarySearchTree::preorder_begin() const
{
return Iterator(_header, _header, Iterator::PREORDER).presucc();
}
Iterator ThreadedBinarySearchTree::preorder_rbegin() const
{
return Iterator(_header, _header, Iterator::PREORDER).prepred();
}
Iterator ThreadedBinarySearchTree::postorder_begin() const
{
return Iterator(_header, _header, Iterator::POSTORDER).postsucc();
}
Iterator ThreadedBinarySearchTree::postorder_rbegin() const
{
return Iterator(_header, _header, Iterator::POSTORDER).postpred();
}
Iterator ThreadedBinarySearchTree::end() const
{
return Iterator(_header, _header, Iterator::UNDEFINED);
}
/*
* Thread manipulation methods
*
*/
#define THREAD_FLAG_MASK 0x8000000000000000
bool ThreadedBinarySearchTree::isThread(Node *ptr)
{
return (((long)ptr) & THREAD_FLAG_MASK) != 0;
}
ThreadedBinarySearchTree::Node *ThreadedBinarySearchTree::makeThread(Node *ptr)
{
return (Node *)(((long)ptr) | THREAD_FLAG_MASK);
}
ThreadedBinarySearchTree::Node *ThreadedBinarySearchTree::makePointer(Node *thread)
{
return (Node *)(((long)thread) & ~THREAD_FLAG_MASK);
}
/*
* Methods of class ThreadedBinarySearchTree::Iterator
*
*/
Iterator::Iterator()
: _header(NULL), _ptr(NULL), _order(UNDEFINED)
{
}
Iterator& Iterator::operator ++()
{
switch (_order)
{
case INORDER:
return insucc();
case PREORDER:
return presucc();
case POSTORDER:
return postsucc();
default:
return *this;
}
}
Iterator& Iterator::operator --()
{
switch (_order)
{
case INORDER:
return inpred();
case PREORDER:
return prepred();
case POSTORDER:
return postpred();
default:
return *this;
}
}
Iterator Iterator::operator ++(int)
{
Iterator result = *this;
operator ++();
return result;
}
Iterator Iterator::operator --(int)
{
Iterator result = *this;
operator --();
return result;
}
//indorder traversal
Iterator& Iterator::insucc()
{
//check if the rchild is a thread
if (isThread(_ptr->_rchild))
{
// if so make a pointer to rchild
_ptr = makePointer(_ptr->_rchild);
}
else
{ //if its a pinter, follow rchild
_ptr = _ptr->_rchild;
//while lchild isnt a thread, follow down to bottom
while (!isThread(_ptr->_lchild))
{
_ptr = _ptr->_lchild;
}
}
//return current pointer
return *this;
}
//indorder reversed traversal
Iterator& Iterator::inpred()
{
//check if the lchild is a thread
if (isThread(_ptr->_lchild))
{
// if so make a pointer to lchild
_ptr = makePointer(_ptr->_lchild);
}
else
{
//if its a pinter, follow lchild
_ptr = _ptr->_lchild;
//while rchild isnt a thread, follow down to bottom
while (!isThread(_ptr->_rchild))
{
_ptr = _ptr->_rchild;
}
}
return *this;
}
//preorder traversal
Iterator& Iterator::presucc()
{
//if lchild is a pointer follow lchild
if (!isThread(_ptr->_lchild))
{
_ptr = _ptr->_lchild;
}
//if rchild is a pointer follow rchild
else if (!isThread(_ptr->_rchild))
{
_ptr = _ptr->_rchild;
}
else
{
//while rchild is a thread, make a pointer of rchild then follow it to its rchild
while (isThread(_ptr->_rchild))
{
_ptr = makePointer(_ptr->_rchild);
}
//go to the rchild of the current pointer
_ptr = _ptr->_rchild;
}
return *this;
}
//preorder reverse traversal
Iterator& Iterator::prepred()
{
//create a node for the parent
Node *parent = this->parent()._ptr;
//if pointer is the parent of the left child
if (_ptr == parent->_lchild)
{
//move to the parent node
_ptr = parent;
}
//if the pointer is the rchild, and there is not lchild
else if ((_ptr == parent->_rchild) && isThread(parent->_lchild))
{
// make pointer to the parent
_ptr = makePointer(parent);
}
else
{
// if the pointer is the rchild
if (parent->_rchild == _ptr)
{
//go to the lchild of the parent
_ptr = parent->_lchild;
}
//while there is a lchild is or lchild
while (!isThread(_ptr->_lchild) || !isThread(_ptr->_rchild))
{
// if ther is a rchild, go the the rchild
if (!isThread(_ptr->_rchild))
{
_ptr = _ptr->_rchild;
}
//if there is a lchild go to the lchild
else
{
_ptr = _ptr->_lchild;
}
}
}
return *this;
}
//post order
Iterator& Iterator::postsucc()
{
//create a node that points to the parent
Node *parent = this->parent()._ptr;
//create a boool checking for number of siblings
bool onechild;
//if pointer is a lchild of the header
if (_ptr == _header->_lchild)
{
//create a node for the header then return
_ptr = (Node *)_header;
return *this;
}
//if pointer is the header go the the lchild
if (_ptr == _header)
{
_ptr = _ptr->_lchild;
}
//if there is no lchild but there is a rchild
if (isThread(parent->_lchild) && !isThread(parent->_rchild))
{
//set onechild to true
onechild = true;
}
//if there is no rchild but there is a lchild
else if (isThread(parent->_rchild) && !isThread(parent->_lchild))
{
//set onchild to true
onechild = true;
}
else
{
// if it has two children set onechild to false
onechild = false;
}
//if the pointer is the rchild or the only child, and if it is not the header
if (((_ptr == parent->_rchild) || onechild) && (parent != _header))
{
// make the parent the pointer
_ptr = parent;
}
else
{
// if it has two children and the parent is not the header
if (!onechild && (parent != _header))
{
// go to the rchild
_ptr = parent->_rchild;
}
// while there is a lchild or a rchild
while (!isThread(_ptr->_lchild) || !isThread(_ptr->_rchild))
{
//if there is a lchild go to the child
if (!isThread(_ptr->_lchild))
{
_ptr = _ptr->_lchild;
}
//else if there is a r child, go to the r child
else if (!isThread(_ptr->_rchild))
{
_ptr = _ptr->_rchild;
}
}
}
return *this;
}
//reverse post traversal
Iterator& Iterator::postpred()
{
//if pointer is the header, go to the lchild
if (_ptr == _header)
{
_ptr = _ptr->_lchild;
}
//else if there is a rchild, go to the r child
else if (!isThread(_ptr->_rchild))
{
_ptr = _ptr->_rchild;
}
//else if there is a lchild go to the lchild
else if (!isThread(_ptr->_lchild))
{
_ptr = _ptr->_lchild;
}
//if there is no children
else
{ //follwo the lchild thread to lchild is a pointer
while (isThread(_ptr->_lchild))
{
_ptr = makePointer(_ptr->_lchild);
}
//if the pointer is the header, return
if (_ptr == _header)
{
return *this;
}
//else go to the lchild
else
{
_ptr = _ptr->_lchild;
}
}
return *this;
}
//find the parent of the pointer
Iterator Iterator::parent() const
{
bool found = false;
//create a new node pointed to the header
Node *tempnode = (Node *)_header;
while (!found)
{
//if lchild is a pointer and the key is greater then the childs key
if (!isThread(tempnode->_lchild) && (key() == tempnode->_lchild->_key))
{
//return the pointer
return Iterator(_header, tempnode, Iterator::UNDEFINED);
}
//if there is a rchild and the key is equal to the rchild's key
else if (!isThread(tempnode->_rchild) && (key() == tempnode->_rchild->_key))
{
//return the pointer
return Iterator(_header, tempnode, Iterator::UNDEFINED);
}
else
{
//if the node is the header
if (tempnode == _header)
{
//go to the lchild
tempnode = tempnode->_lchild;
}
//if the key is greater the current pointers node
else if (key() > tempnode->_key)
{
//go to the rchild
tempnode = tempnode->_rchild;
}
//if the key is less then the current nodes key
else if (key() < tempnode->_key)
{
//go to the lchild
tempnode = tempnode->_lchild;
}
}
}
}
string Iterator::key() const
{
return _ptr->_key;
}
int Iterator::value() const
{
return _ptr->_value;
}
bool Iterator::operator ==(const Iterator& other) const
{
return _ptr == other._ptr && _ptr != NULL;
}
bool Iterator::operator !=(const Iterator& other) const
{
return _ptr != other._ptr || _ptr == NULL;
}
Iterator::Iterator(const Node *header,
Node *ptr,
Order order)
: _header(header), _ptr(ptr), _order(order)
{
}
// ostream operator << is in a separate file