-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList_Queue_Stack.cpp
More file actions
432 lines (419 loc) · 12.1 KB
/
Copy pathLinkedList_Queue_Stack.cpp
File metadata and controls
432 lines (419 loc) · 12.1 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
// YeeAssignment4.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
using namespace std;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class LinkedListA4
{
protected:
struct node //node struct to hold nodes
{
int data;
struct node *next;
};
node *head;
int size;
public:
//@:constructor linkedLIstA4
//purpose: default constructor
//===================================================================================================================================================
LinkedListA4()
{
head = nullptr;
size = 0;
}
//===================================================================================================================================================
//@:addBack
//purpose: takes in integer, adds to back of list
//===================================================================================================================================================
void addBack(int value)
{
node *newNode;
node *pointer;
newNode = new node;
newNode->data = value;
newNode->next = nullptr;
if (head == nullptr) //if first element of the node
{
head = newNode;
size++;
}
else
{
pointer = head;
while (pointer->next) //while not at end of list
{
pointer = pointer->next;
}
pointer->next = newNode;
size++;
}
}
//===================================================================================================================================================
//@:addFront
//purpose: takes integer, appends to front of list
//===================================================================================================================================================
void addFront(int value)
{
node *newNode;
newNode = new node;
newNode->data = value;
newNode->next = head;
head = newNode;
size++;
}
//===================================================================================================================================================
//@: remove
//purpose: given sepcified number, will remove it from the list if it exists
//===================================================================================================================================================
int remove(int num)
{
node *nodePtr;
node *previous = nullptr;;
if (head == nullptr)
{
return 0;
}
if (head->data == num) //if want to delete head
{
nodePtr = head->next;
delete head;
head = nodePtr;
size--;
}
else
{
nodePtr = head;
while (nodePtr != nullptr && nodePtr->data != num)
{
previous = nodePtr;
nodePtr = nodePtr->next;
}
if (nodePtr->next != nullptr)
{
previous->next = nodePtr->next;
size--;
delete nodePtr;
}
else
{
previous->next = nullptr;
delete nodePtr;
size--;
}
}
}
//===================================================================================================================================================
//@:removeFront
//purpose: will remove the first elmeent in the list
//===================================================================================================================================================
int removeFront()
{
if (head == nullptr)
{
return -10;
}
else if (size == 1)
{
int temp = head->data;
delete head;
head = nullptr;
return temp;
}
else
{
node *temp = head->next;
int data = head->data;
delete head;
head = temp;
size--;
return data;
}
}
//===================================================================================================================================================
//@:removeBack
//purpose: will remove from the back of the list
//===================================================================================================================================================
int removeBack()
{
if (head == nullptr)
{
return -10;
}
else if (size == 1)
{
int temp = head->data;
delete head;
head = nullptr;
return temp;
}
else
{
size--;
node *pointer = head;
node *previous = nullptr;
while (pointer->next != nullptr)
{
previous = pointer;
pointer = pointer->next;
}
previous->next = nullptr;
int data = pointer->data;
delete pointer;
size--;
return data;
}
}
//===================================================================================================================================================
//@:print
//purpose: prints out all elements in the list
//===================================================================================================================================================
void print()
{
node *temp = head;
cout << "[";
while (temp != nullptr)
{
cout << temp->data << ", ";
temp = temp->next;
}
cout << "]";
}
//===================================================================================================================================================
//@:destructor LinkedListA4
//purpose: will delete list node by node
//===================================================================================================================================================
~LinkedListA4()
{
node *pointer = head;
while (pointer != nullptr)
{
node *next = pointer->next;
delete pointer;
pointer = next;
}
head = nullptr;
}
//===================================================================================================================================================
};
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class StackA4 :public LinkedListA4
{
private:
int size=0;
public:
//@method:pop
//purpose: pops elmeent off
//===================================================================================================================================================
int pop()
{
int popped=removeBack();
size--;
return popped;
}
//===================================================================================================================================================
//@method:push
//purpose: puts elmeent following lifo
//===================================================================================================================================================
void push(int value)
{
addBack(value);
size++;
}
//===================================================================================================================================================
//@method:peek
//purpose: gets top element of stack
//===================================================================================================================================================
int peek()
{
return head->data;
}
//===================================================================================================================================================
};
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class QueueA4 : public LinkedListA4
{
private:
int size = 0;
public:
//@method:enqueue
//purpose: puts element in queue following fifo
//===================================================================================================================================================
void enqueue(int value)
{
addBack(value);
size++;
}
//===================================================================================================================================================
//@method:dequeue
//purpose: puts elmeent in queue following fifo
//===================================================================================================================================================
int dequeue()
{
int temp = removeFront();
return temp;
}
//===================================================================================================================================================
};
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//===================================================================================================================================================
int main()
{
int userIn;
while (true)
{
cout << "Please enter the integer corresponding to the desired action: " << endl;
cout << "1) Manipulate Linked List " << endl;
cout << "2) Manipulate Stack "<<endl;
cout << "3) Manipulate Queue "<<endl;
cout << "4) Quit "<<endl;
cin >> userIn;
if (userIn == 1)
{
LinkedListA4 list;
while (true)
{
cout << "Please enter the integer corresponding to the desired action: " << endl;
cout << "1) add to the front of the list" << endl;
cout << "2) add to the back of the list" << endl;
cout << "3) delete from the back of the list" << endl;
cout << "4) delete from the front of the list: <<endl";
cout << "5) Print the list" << endl;
cout << "6) done" << endl;
int temp, temp2;
cin >> temp;
if (temp == 1)
{
cout << "Please enter the number you would like to add" << endl;
cin >> temp2;
cout << endl;
list.addFront(temp2);
list.print();
cout << endl;
}
else if (temp ==2)
{
cout << "Please enter the number you would like to add" << endl;
cin >> temp2;
cout << endl;
list.addBack(temp2);
list.print();
cout << endl;
}
else if (temp == 3)
{
cout << "deleting: " << list.removeBack() << endl;
list.print();
cout << endl;
}
else if (temp == 4)
{
cout << "deleting: " << list.removeFront() << endl;
list.print();
cout << endl;
}
else if (temp == 5)
{
list.print();
cout << endl;
}
else if (temp == 6)
{
list.~LinkedListA4();
cout << endl;
break;
}
else
{
cout << "Invalid input" << endl;
}
}
}
else if (userIn == 2)
{
StackA4 stack;
int temp, temp2;
while (true)
{
cout << "Please enter the integer corresponding to the desired action: ";
cout << "1) push" << endl;
cout << "2) pop" << endl;
cout << "3) peek" << endl;
cout << "4) done" << endl;
cin >> temp;
if (temp == 1)
{
cout << "Please enter an integer to push" << endl;
cin >> temp2;
stack.push(temp2);
stack.print();
}
else if (temp == 2)
{
cout << " Popping " << stack.pop() << endl;
stack.print();
}
else if (temp == 3)
{
cout << "The element at the top of the stack is " << stack.peek() << endl;
}
else if (temp == 4)
{
break;
}
else
{
cout << "Invalid input" << endl;
}
}
}
else if (userIn == 3)
{
QueueA4 queue;
int temp, temp2;
while (true)
{
cout << "PLease enter the integer corresponding to the desired action: " << endl;
cout << "1) enqueue" << endl;
cout << "2)dequeue" << endl;
cout << "3) done" << endl;
cin >> temp;
if (temp == 1)
{
cout << "PLease enter the integer to enqueue" << endl;
cin >> temp2;
queue.enqueue(temp2);
queue.print();
}
else if (temp == 2)
{
cout << "Dequeueing: " << queue.dequeue() << endl;
queue.print();
}
else if (temp == 3)
{
break;
}
else
{
cout << "invalid input" << endl;
}
}
}
else if (userIn == 4)
{
cout << "Quitting..." << endl;
exit(0);
}
else
{
cout << "Invalid input" << endl;
}
}
return 0;
}
//===================================================================================================================================================
# C-Stack-Queue-LinkedList