-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvaluatorSource.cpp
More file actions
408 lines (364 loc) · 8.9 KB
/
EvaluatorSource.cpp
File metadata and controls
408 lines (364 loc) · 8.9 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
#include "Evaluator.h"
#include "Syntax_Error.h"
#include "Infix_Parser.h"
#include "Token.h"
#include <iostream>
#include <stack>
#include <string>
#include <algorithm>
#include <cmath>
#include <vector>
using namespace std;
void Evaluator::setTokens(vector<Token> _v)
{
}
int Evaluator::getPrecedence(string _operator)
{
if (_operator == "^")
{
return precedence = 7;
}
else if (_operator == "*")
{
return precedence = 7;
}
else if (_operator == "/")
{
return precedence = 7;
}
else if (_operator == "%")
{
return precedence = 7;
}
else if (_operator == "+")
{
return precedence = 5;
}
else if (_operator == "-")
{
return precedence = 5;
}
else if (_operator == "<")
{
return precedence = 4;
}
else if (_operator == "<=")
{
return precedence = 4;
}
else if (_operator == ">")
{
return precedence = 4;
}
else if (_operator == ">=")
{
return precedence = 4;
}
else if (_operator == "!=")
{
return precedence = 3;
}
else if (_operator == "==")
{
return precedence= 3;
}
else if (_operator == "&&")
{
return precedence = 2;
}
else if (_operator == "||")
{
return precedence = 1;
}
else
{
Syntax_Error("Invalid operator!");
}
}
Evaluator::Evaluator()
{
}
Token Evaluator::calculateUnary(Token _operator, Token _right)
{
Token answer = 0;
if (_operator.getopr() == "++")
{
answer.setopd(_right.getopd() + 1);
}
else if (_operator.getopr() == "--")
{
answer.setopd(_right.getopd() - 1);
}
else if (_operator.getopr() == "-")
{
answer.setopd(-_right.getopd());
}
else if (_operator.getopr() == "!")
{
answer.setopd(!_right.getopd());
}
else
{
Syntax_Error("Invalid operator!");
}
return answer;
}
Token Evaluator::calculateBinary(Token _left, Token _operator, Token _right)
{
Token answer = 0;
if (_operator.getopr() == "^")
{
answer.setopd(pow(_left.getopd(), _right.getopd()));
}
else if (_operator.getopr() == "*")
{
answer.setopd(_left.getopd() * _right.getopd());
}
else if (_operator.getopr() == "/")
{
answer.setopd(_left.getopd() / _right.getopd());
}
else if (_operator.getopr() == "+")
{
answer.setopd(_left.getopd() + _right.getopd());
}
else if (_operator.getopr() == "-")
{
answer.setopd(_left.getopd() - _right.getopd());
}
else if (_operator.getopr() == "<")
{
answer.setopd(_left.getopd() < _right.getopd());
}
else if (_operator.getopr() == "<=")
{
answer.setopd(_left.getopd() <= _right.getopd());
}
else if (_operator.getopr() == ">")
{
answer.setopd(_left.getopd() > _right.getopd());
}
else if (_operator.getopr() == ">=")
{
answer.setopd(_left.getopd() >= _right.getopd());
}
else if (_operator.getopr() == "%")
{
answer.setopd(_left.getopd() % _right.getopd());
}
else if (_operator.getopr() == "==")
{
answer.setopd(_left.getopd() == _right.getopd());
}
else if (_operator.getopr() == "!=")
{
answer.setopd(_left.getopd() != _right.getopd());
}
else if (_operator.getopr() == "&&")
{
answer.setopd(_left.getopd() && _right.getopd());
}
else if (_operator.getopr() == "||")
{
answer.setopd(_left.getopd() || _right.getopd());
}
else
{
Syntax_Error("Invalid argument!");
}
return answer;
}
int Evaluator::evaluate()
{
Token getopr(), get_type(), getopd();
int index = 0;
// Error detection
if (v[0].getopr() == ")")
{
cout << "Cannot begin with a ) character! " << index << endl;
exit(0);
}
else if (v[0].getopr() != "" && v[0].get_type() == 'B')
{
cout << "Cannot begin with binary character! " << index << endl;
exit(0);
}
for (std::vector<Token>::iterator iter = v.begin(); iter != v.end(); iter++)
{
std::vector<Token>::iterator nextCharacter = iter;
nextCharacter++;
if (iter->getopr() == "/" && nextCharacter->getopr() == "" && nextCharacter->getopd() == 0)
{
cout << "You cannot divide by zero! " << index << endl;
exit(0);
}
// If the character is an operand then push to the operand stack
if (iter->getopr() == "" && !lastOperand)
{
operandStack.push(*iter);
lastOperand = true;
while (!operatorStack.empty())
{
if (operatorStack.empty() || operandStack.empty())
{
cout << "Either the operator stack is empty or the operand stack is empty" << index << endl;
exit(0);
}
// If the top of the operator stack has a unary operator than continue to calculate unary operators
if (operatorStack.top().get_type() == 'U')
{
Token center(), right();
center() = operatorStack.top(); //Added a () and the l,r,c in token.h
operatorStack.pop();
right() = operandStack.top();
operandStack.pop();
operandStack.push(calculateUnary(center(), right()));
}
else
{
break;
}
}
}
// Error checking to see if there are two operands
else if (iter->getopr() == "" && lastOperand)
{
cout << "There cannot be two operands back to back. " << index << endl;
exit(0);
}
else if (iter->getopr() == "(")
{
// If the previous number was an operand then multiply
if (lastOperand)
{
Token::multiply;
multiply.setopr("*"); //Not sure if this will wor
operatorStack.push('*');
}
operatorStack.push(*iter);
lastOperand = false;
}
else if (iter->getopr() != "" && lastOperand && iter->get_type() == 'B')
{
if (operatorStack.empty())
{
operatorStack.push(*iter);
lastOperand = false;
}
//The check the precedence of current token compared to the top of the operatorStack
else if (getPrecedence(iter->getopr()) > getPrecedence(operatorStack.top().getopr()))
{
operatorStack.push(*iter);
lastOperand = false;
}
else if (getPrecedence(iter->getopr()) <= getPrecedence(operatorStack.top().getopr()))
{
// If the top of the operator stack has precedence over or equal to then calculateBinary
if (operatorStack.empty() || operandStack.empty())
{
cout << "At least one of the stacks are empty. " << index << endl;
exit(0);
}
Token left(), center(), right();
right() = operandStack.top();
operandStack.pop();
left() = operandStack.top();
operandStack.pop();
center() = operatorStack.top();
operatorStack.pop();
operandStack.push(calculateBinary(left(), center(), right()));
operatorStack.push(*iter);
lastOperand = false;
}
}
else if (iter->getopr() != "" && !lastOperand && iter->get_type() == 'B')
{
cout << "You cannot have two binary operators back to back. " << index << endl;
exit(0);
}
// Push the unarys from operatorStack
else if (iter->getopr() != "" && iter->get_type() == 'U')
{
if (nextCharacter != v.end())
{
// If it's binary
if (nextCharacter->getopr() != "" && nextCharacter->get_type() == 'B')
{
cout << "There cannot be a unary then binary operator back to back. " << index << endl;
exit(0);
}
//If it's unary, push it to the operator stack
else if (nextCharacter->getopr() != "" && nextCharacter->get_type() == 'U')
{
operatorStack.push(*iter);
}
else if (nextCharacter->getopr() == "")
{
operatorStack.push(*iter);
}
else
{
cout << "A number or a unary operator did now come after a unary operator. " << index << endl;
exit(0);
}
}
}
// If precedence dominates then calculate until ')' is found.
else if (iter->getopr() == ")") {
while (!operatorStack.empty())
{
if (operatorStack.empty())
{
cout << "There was no ')' found. The stack is empty. " << index << endl;
exit(0);
}
if (operatorStack.top().getopr() != "(")
{
Token left(), center(), right();
right() = operandStack.top();
operandStack.pop();
left() = operandStack.top();
operandStack.pop();
center() = operatorStack.top();
operatorStack.pop();
operandStack.push(calculateBinary(left(), center(), right()));
}
else
{
break;
}
}
operatorStack.pop();
lastOperand = true;
}
index += 1;
}
// Calculate until only one is left in the operand stack
while (!operatorStack.empty())
{
Token left(), center(), right();
right() = operandStack.top();
operandStack.pop();
left() = operandStack.top();
operandStack.pop();
center() = operatorStack.top();
operatorStack.pop();
operandStack.push(calculateBinary(left(), center(), right()));
}
int result = operandStack.top().getopd();
operandStack.pop();
//This checks to see if something messed up
if (!operandStack.empty())
{
cout << "The operand stack is not empty." << index << endl;
exit(0);
}
return result;
}
int main()
{
/*string y = "3 + 5";
Infix_Parser parser;
string result = parser.parse(y);
return 0;*/
}