-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cc
83 lines (78 loc) · 2.12 KB
/
main.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
//Name: Nicholas Rogers
//SSID: 861152009
//Date: 4/27/15
#include "lab3.h"
int main() {
// TwoStackFixed<int> a(6, 3);
// TwoStackFixed<double> b(6, 3);
// a.pushStack1(5);
// a.pushStack1(4);
// a.pushStack1(3);
// a.pushStack1(2);
// cout << "Stack 2: " << endl;
// a.pushStack2(5);
// a.pushStack2(4);
// a.pushStack2(3);
// a.pushStack2(2);
// cout << "Pop" << endl;
// a.popStack1();
// a.popStack2();
// cout << "Push 0" << endl;
// a.pushStack1(0);
// a.pushStack2(0);
// // b.popStack1();
// // b.popStack2();
// cout << "Full:" << endl;
// assert(!a.isEmptyStack1());
// assert(b.isEmptyStack1());
// assert(!a.isEmptyStack2());
// assert(b.isEmptyStack2());
// cout << "Empty:" << endl;
// assert(a.isFullStack1());
// assert(a.isFullStack2());
// assert(!b.isFullStack1());
// assert(!b.isFullStack2());
// cout << "Display" << endl;
// a.display();
// b.display();
// TwoStackOptimal<int> a(6);
// TwoStackOptimal<double> b(6);
// a.pushFlexStack1(5);
// a.pushFlexStack1(4);
// a.pushFlexStack1(3);
// a.pushFlexStack1(2);
// cout << "Stack 2: " << endl;
// a.pushFlexStack2(5);
// a.pushFlexStack2(4);
// a.pushFlexStack2(3);
// a.pushFlexStack2(2);
// cout << "Pop" << endl;
// a.popFlexStack1();
// a.popFlexStack2();
// cout << "Push 0" << endl;
// a.pushFlexStack1(0);
// a.pushFlexStack2(0);
// // b.popFlexStack1();
// // b.popFlexStack2();
// cout << "Full:" << endl;
// assert(!a.isEmptyStack1());
// assert(b.isEmptyStack1());
// assert(!a.isEmptyStack2());
// assert(b.isEmptyStack2());
// cout << "Empty:" << endl;
// assert(a.isFullStack1());
// assert(a.isFullStack2());
// assert(!b.isFullStack1());
// assert(!b.isFullStack2());
// cout << "Display" << endl;
// a.display();
// b.display();
stack<int> A, B, C;
for(int i = 0; i < 3; i++) {
A.push(i);
cout << A.top() << ' ';
}
cout << endl;
showTowerStates(3, A, B, C);
return 0;
}