-
Notifications
You must be signed in to change notification settings - Fork 0
/
TowersofHanoi.cpp
225 lines (161 loc) · 6.1 KB
/
TowersofHanoi.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
#include <iostream>
#include <stack> // stack library
#include <cmath> // for pow function
using namespace std;
/* RULES FOR EVEN NUMBER
1- Source to auxilary
2- Source to destination
3- Auxilary to destination
RULES FOR ODD NUMBER
1- Source to destination
2- Source to auxilary
3- Destination to auxilary
*/
void towersGeneral (stack<int>& destination, int numDisks){ // Destination => Third Peg (result)
stack <int> source; // First peg
for (int i = numDisks; i > 0; i--){
source.push(i); // we add disk to source stack
}
stack <int> auxilary; // Second Peg
int steps =pow(2,numDisks)-1; // -formula for the number of steps- How many steps should ?
int iteration; // what step are we on
if(numDisks%2 == 0){ // If number of disks is even number
for(iteration=1 ; iteration <= steps ; iteration++){
if( iteration%3 == 0 ){ // AUXILIARY TO DESTINATION Step:3
if(destination.empty()){
destination.push(auxilary.top()); //I sent top element of auxiliary to destination peg
auxilary.pop(); //I removed top element of auxiliary
}
else if(auxilary.empty()){
auxilary.push(destination.top());
destination.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(destination.top() > auxilary.top()){
destination.push(auxilary.top());
auxilary.pop();
}
else{ // ( auxilary.top() > destination.top() )
auxilary.push(destination.top());
destination.pop();
}
}
} //End of Step 3
if( iteration%3 == 1 ){ // SOURCE TO AUXILIARY Step:1
if(auxilary.empty()){
auxilary.push(source.top());
source.pop();
}
else if(source.empty()){
source.push(auxilary.top());
auxilary.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(auxilary.top() > source.top()){
auxilary.push(source.top());
source.pop();
}
else{ // ( source.top() > auxilary.top() )
source.push(auxilary.top());
auxilary.pop();
}
}
} // End of Step 1
if( iteration%3 == 2 ){ // SOURCE TO DESTINATION Step:2
if(destination.empty()){
destination.push(source.top());
source.pop();
}
else if(source.empty()){
source.push(destination.top());
destination.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(destination.top() > source.top()){
destination.push(source.top());
source.pop();
}
else{ //( source.top() > destination.top() )
source.push(destination.top());
destination.pop();
}
}
}// End of Step 2
}
}
else{ // // If number of disks is odd number
for(iteration=1 ; iteration <= steps ; iteration++){
if( iteration%3 == 1 ){ // SOURCE TO DESTINATION Step:1
if(destination.empty()){
destination.push(source.top()); // //I sent top element of source to destination peg
source.pop(); //I removed top element of source peg
}
else if(source.empty()){
source.push(destination.top());
destination.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(destination.top() > source.top()){
destination.push(source.top());
source.pop();
}
else{ // ( source.top() > destination.top() )
source.push(destination.top());
destination.pop();
}
}
} // End of Step 1
if( iteration%3 == 2 ){ // SOURCE TO AUXILARY Step:2
if(auxilary.empty()){
auxilary.push(source.top());
source.pop();
}
else if(source.empty()){
source.push(auxilary.top());
auxilary.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(auxilary.top() > source.top()){
auxilary.push(source.top());
source.pop();
}
else{ // ( source.top() > auxilary.top() )
source.push(auxilary.top());
auxilary.pop();
}
}
} // End of Step 2
if(iteration%3 == 0){ // DESTINATION TO AUXILARY Step:3
if(auxilary.empty()){
auxilary.push(destination.top());
destination.pop();
}
else if(destination.empty()){
destination.push(auxilary.top());
auxilary.pop();
}
else{ // if both are not empty then smaller disk should come top of the big one
if(auxilary.top() > destination.top()){
auxilary.push(destination.top());
destination.pop();
}
else{ // ( destination.top() > auxilary.top() )
destination.push(auxilary.top());
auxilary.pop();
}
}
}// End of Step 3
}
}
}
int main(){
stack <int> result;
cout<<"---After Moving---"<<endl;
towersGeneral(result,13);
while(!result.empty())
{
cout<< result.top()<<endl;
result.pop();
}
return 0;
}