-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminidc.cpp
269 lines (215 loc) · 4.12 KB
/
minidc.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
#include <iostream>
#include <stack>
#include <string>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
class minidc
{
private:
stack<double> in, out;
double a,b;
int i;
public:
minidc()
{
i = 0;
}
//~minidc(){ delete <int> in; delete <int> out;}
void join(double val)
{
in.push(val);
}
// Prints the value on the top of the stack, without altering the stack.
void p()
{
if ( ! in.size()){
cout << "minidc: stack empty" << endl;
return;
}
cout << in.top() << endl;
}
// Prints the value on the top of the stack, popping it off.
void n()
{
if ( ! in.size()){
cout << "minidc: stack empty" << endl;
return;
}
cout << in.top() << endl;
in.pop();
}
// Prints the entire contents of the stack without altering anything.
void f()
{
if ( ! in.size()){
cout << "minidc: stack empty" << endl;
return;
}
out = in;
i = out.size();
while(i > 0)
{
cout << out.top() << endl;
out.pop();
i--;
}
}
// Pops two values off the stack, adds them, and pushes the result.
void add()
{
if ( in.size() < 2){
cout << "minidc: stack empty" << endl;
return;
}
a = in.top(); in.pop();
b = in.top(); in.pop();
// overflow???
in.push(a + b);
}
// Pops two values off the stack, subtracts the first one popped from the second one popped, and pushes the result.
void sub()
{
if ( in.size() < 2){
cout << "minidc: stack empty" << endl;
return;
}
a = in.top(); in.pop();
b = in.top(); in.pop();
// underflow???
in.push(b - a);
}
// Pops two values, multiplies them, and pushes the result.
void mul()
{
if ( in.size() < 2){
cout << "minidc: stack empty" << endl;
return;
}
a = in.top(); in.pop();
b = in.top(); in.pop();
// overflow???
in.push(b * a);
}
// Pops two values, divides the second one popped from the first one popped, and pushes the result.
void div()
{
if ( in.size() < 2){
cout << "minidc: stack empty" << endl;
return;
}
a = in.top(); in.pop();
if ( ! a){
cout << "minidc: divide by zero" << endl;
return;
}
b = in.top(); in.pop();
// underflow???
in.push(b / a);
}
string parse(string s)
{
unsigned found = s.find("+");
while (found != string::npos)
{
s.replace(found, 1," + ");
found = s.find("+", found + 2, 1);
}
found = s.find("-");
while (found != string::npos)
{
s.replace(found, 1," - ");
found = s.find("-", found + 2, 1);
}
found = s.find("*");
while (found != string::npos)
{
s.replace(found, 1," * ");
found = s.find("*", found + 2, 1);
}
found = s.find("/");
while (found != string::npos)
{
s.replace(found, 1," / ");
found = s.find("/", found + 2, 1);
}
return s;
}
void solve(){
}
};
int main()
{
minidc dc;
int flag = 1;
string s;
char * pch;
char valid[] = "0123456789._+-*/pnfq";
while (flag){
getline(cin, s);
s = dc.parse(s);
// tokenization
char * cstr = new char [s.length()+1];
strcpy(cstr, s.c_str());
pch = strtok(cstr, " \t");
while(pch != NULL)
{
if (strspn(pch, valid))
{
if (strstr(pch, "q"))
{
flag = 0;
}
else if (strstr(pch, "p"))
{
dc.p();
}
else if (strstr(pch, "n"))
{
dc.n();
}
else if (strstr(pch, "f"))
{
dc.f();
}
else if (strstr(pch, "*"))
{
dc.mul();
}
else if (strstr(pch, "/"))
{
dc.div();
}
else if (strstr(pch, "+"))
{
dc.add();
}
else if (strstr(pch, "-"))
{
dc.sub();
}
else
{
if (strstr(pch, "_"))
{
s = pch;
unsigned pos = s.find("_");
s = s.replace(pos, 1, "");
dc.join(-1 * strtod(s.c_str(), NULL));
}
else
{
dc.join(strtod(pch, NULL));
}
}
}
else
{
cout << "Invalid character" << endl;
}
pch = strtok (NULL, " \t");
}
}
return 0;
}