-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatastructures.cpp
453 lines (408 loc) · 10.3 KB
/
datastructures.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
/*
Data structure implementations for program 1
Ben Rimedio - 10/26/2021
CS202 - Fall 2021
Instructor: Karla Fant
These are the implementations of the data structures (clients) for the activities.
Insert, remove, display, and destroy are all supported.
*/
#include <iostream>
#include "activities.h"
#include "datastructures.h"
//-------------------------------------node----------------------------------------------------
//Default constructor:
node::node()
{
next = nullptr;
prev = nullptr;
data = nullptr;
}
//Constructor for In_person:
node::node(In_person*& inp)
{
next = nullptr;
prev = nullptr;
data = inp;
}
//Constructor for Remote:
node::node(Remote*& rem)
{
next = nullptr;
prev = nullptr;
data = rem;
}
//Constructor for Online:
node::node(Online*& onl)
{
next = nullptr;
prev = nullptr;
data = onl;
}
//Copy constructor. Uses RTTI to determine data type:
node::node(const node& source)
{
In_person* inp_test = dynamic_cast<In_person*>(source.data);
Remote* rem_test = dynamic_cast<Remote*>(source.data);
Online* onl_test = dynamic_cast<Online*>(source.data);
if(!source.data)
data = nullptr;
else if(inp_test)
data = new In_person(*inp_test);
else if(rem_test)
data = new Remote(*rem_test);
else if(onl_test)
data = new Online(*onl_test);
else
data = nullptr;
next = nullptr;
prev = nullptr;
}
//Destructor:
node::~node()
{
next = nullptr;
prev = nullptr;
delete data;
}
//Get next:
node*& node::go_next(void)
{
return next;
}
//Get previous:
node*& node::go_prev(void)
{
return prev;
}
//Set next with node* as arg:
void node::set_next(node*& a_node){
next = a_node;
}
//Set previous with node* as arg:
void node::set_prev(node*& a_node)
{
prev = a_node;
}
//Display wrapper:
void node::display(void) const
{
if(data)
data->display();
}
//Input wrapper
void node::input(void)
{
data->input();;
}
//Name wrapper with char* as arg:
void node::set_name(char* a_name)
{
data->set_name(a_name);
}
//Prioroty wrapper with priority as arg:
void node::set_priority(priority a_prior)
{
data->set_priority(a_prior);
}
//Consult wrapper (for In_person only). Uses simple RTTI to check types before continuing:
bool node::consult(void)
{
In_person* test_ptr = dynamic_cast<In_person*>(data);
if(test_ptr)
{
test_ptr->consult();
return true;
}
else
{
return false;
}
}
//Resturn index as an unsigned short:
unsigned short node::generate_index(void)
{
return data->generate_index();
}
//Wrapper for compare name with char* as arg:
bool node::compare_name(char* a_name)
{
return data->compare_name(a_name);
}
bool node::remove_consult(unsigned short index)
{
In_person* test_ptr = dynamic_cast<In_person*>(data);
if(test_ptr)
{
test_ptr->remove_consult(index);
return true;
}
else
{
return false;
}
}
//-------------------------------Array of doubly linked lists----------------------------------
//Default constructor:
a_llist::a_llist()
{
data = new node*[NUM_PRIORITIES];
for(int i = 0; i < NUM_PRIORITIES; i++)
data[i] = nullptr;
}
//Copy constructor:
a_llist::a_llist(const a_llist& source)
{
data = new node*[NUM_PRIORITIES];
for(int i = 0; i < NUM_PRIORITIES; i++)
data[i] = nullptr;
for(int i = 0; i < NUM_PRIORITIES; i++)
list_copy(data[i], source.data[i]);
}
//Destructor:
a_llist::~a_llist()
{
r_array_destroy(data, 0);
delete [] data;
}
//Copy one list recursively with a destination node* and a source node* as args:
void a_llist::list_copy(node*& dest, node*& src)
{
if(!src)
return;
dest = new node(*src);
list_copy(dest->go_next(), src->go_next());
}
//Destroy each list with array of node* as args and an index as an arg:
void a_llist::r_array_destroy(node** begin, size_t index)
{
if(index >= NUM_PRIORITIES)
return;
list_destroy(*(begin + index));
r_array_destroy(begin, index + 1);
}
//Destroy a single list with head node* as arg:
void a_llist::list_destroy(node*& head)
{
if(!head)
return;
list_destroy(head->go_next());
delete head;
}
//Display entire structure:
void a_llist::display(void)
{
r_array_display(data, 0);
std::cout << std::endl;
}
//Move through the list and display each list with node** and index as args:
void a_llist::r_array_display(node** begin, size_t index)
{
if(index >= NUM_PRIORITIES)
return;
std::cout << "\n=======================================================\nPRIORITY: ";
switch(index)
{
case 0:
std::cout << "HIGH\n=======================================================";
break;
case 1:
std::cout << "MEDIUM\n=======================================================";
break;
case 2:
std::cout << "LOW\n=======================================================";
break;
default:
std::cout << std::endl;
break;
}
list_display(*(begin + index));
r_array_display(begin, index + 1);
}
//Display each list in the array with head node* as arg:
void a_llist::list_display(node*& head)
{
if(!head)
return;
head->display();
list_display(head->go_next());
}
//Insert by node with new node* as arg:
void a_llist::insert(node*& a_node)
{
unsigned short ind = a_node->generate_index();
r_insert(data[ind], a_node);
}
//Recursive insert into one list with head node* and new node* as args:
void a_llist::r_insert(node*& a_head, node*& a_node)
{
//Empty list:
if(!a_head)
{
a_head = a_node;
return;
}
//Insert at end:
if(!a_head->go_next())
{
a_node->set_prev(a_head);
a_head->set_next(a_node);
return;
}
//Keep going:
r_insert(a_head->go_next(), a_node);
}
//Insert via user input:
void a_llist::insert(void)
{
node* new_activity;
unsigned short choice;
char consult_choice;
bool another = true;
//Menu for type:
std::cout << "\n1) New in person activity\n2) New remote activity\n3) New online activity\n>>> ";
while(!(std::cin >> choice) || choice < 1 || choice > 3)
{
std::cout << "Invalid input." << std::endl;
std::cin.clear();
std::cin.ignore(MAX_STREAM, '\n');
std::cout << "\n1) New in person activity\n2) New remote activity\n3) New online activity\n>>> ";
}
std::cin.clear();
std::cin.ignore(MAX_STREAM, '\n');
//Assign proper type to new_activity:
if(choice == 1)
{
In_person* new_inp = new In_person;
new_inp->input();
new_activity = new node(new_inp);
}
else if(choice == 2)
{
Remote* new_rem = new Remote;
new_rem->input();
new_activity = new node(new_rem);
}
else if(choice == 3)
{
Online* new_onl = new Online;
new_onl->input();
new_activity = new node(new_onl);
}
//Add consultations (if possible) until user says no more:
while(another)
{
std::cout << "Add any associated meetings or consultations? (Y/N): ";
while(!(std::cin >> consult_choice) || (toupper(consult_choice) != 'Y' && toupper(consult_choice) != 'N'))
{
std::cout << "\nInvalid choice.\n" << std::endl;
std::cin.clear();
std::cin.ignore(MAX_STREAM, '\n');
std::cout << "Add any associated meetings or consultations? (Y/N):";
}
std::cin.clear();
std::cin.ignore(MAX_STREAM, '\n');
if(toupper(consult_choice) == 'Y')
{
if(!(new_activity->consult()))
{
std::cout << "\nConsults must be a non-empty string and can only be added to in-person activities.\n" << std::endl;
another = false;
}
}
else
{
another = false;
}
}
//Insert the new data:
insert(new_activity);
std::cout << std::endl;
}
//Retrieve a node based on its char* name:
node* a_llist::retrieve(char* a_name)
{
if(!a_name)
return nullptr;
return r_array_retrieve(data, 0, a_name);
}
//Move through array and search each list until name is found or not with array of node*, index, and char* name as args:
node* a_llist::r_array_retrieve(node** begin, unsigned short index, char*& a_name)
{
node* ret = nullptr;
if(index >= NUM_PRIORITIES)
{
return nullptr;
}
else
{
ret = list_retrieve(*(data + index), a_name);
if(ret)
return ret;
else
return r_array_retrieve(begin, index + 1, a_name);
}
}
//Retrieve from individual list with node* head and char* name as args:
node* a_llist::list_retrieve(node*& head, char*& a_name)
{
if(!head)
return nullptr;
if(head->compare_name(a_name))
return head;
return list_retrieve(head->go_next(), a_name);
}
//Remove by node. Returns false if node isn't found with node* as arg:
bool a_llist::remove(node*& a_node)
{
if(!a_node)
return false;
return r_remove(data[a_node->generate_index()], a_node);
}
//Recursive removal:
bool a_llist::r_remove(node*& a_head, node*& a_node)
{
//Empty list/not in list:
if(!a_head)
return false;
//First element:
if(a_head->go_prev() == nullptr && a_head == a_node)
{
node* tmp = a_head;
a_head = a_head->go_next();
delete tmp;
return true;
}
//Match:
if(a_head == a_node)
{
if(a_head && a_head->go_prev())
a_head->go_prev()->set_next(a_head->go_next());
if(a_head && a_head->go_next())
a_head->go_next()->set_prev(a_head->go_prev());
delete a_head;
a_head = nullptr;
return true;
}
//Keep going:
return r_remove(a_head->go_next(), a_node);
}
//Remove by name with char* as arg:
bool a_llist::remove(char* rem_name)
{
node* to_remove = retrieve(rem_name);
return remove(to_remove);
}
//Remove consultation by name with char* name and short index as args:
bool a_llist::remove_consult(char* a_name, unsigned short index)
{
node* to_remove = nullptr;
to_remove = retrieve(a_name);
if(to_remove)
{
return to_remove->remove_consult(index);
}
else
{
return false;
}
}