-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshunparser.cpp
282 lines (248 loc) · 8.01 KB
/
shunparser.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
270
271
272
273
274
275
276
277
278
279
280
281
282
#include "shunparser.h"
std::vector<char> operatorList {'+','-','*','/','%','^'};
//returns postfix expression as string, from string input
std::string parserObj::runParse(std::string input){
return printShun(toShun(input));
}
//returns result as float, from string input
float parserObj::calct(std::string input){
return readShun(toShun(input));
}
//returns postfix expression as queue, from string input
std::queue<std::string> parserObj::toShun(std::string input){
std::string strBuffer; //this is a memory string for storing chars and digits until var/func or number is complete
std::queue<std::string> output;
for(unsigned short i = 0; i < input.length(); i++){
//check if token is number
if(isdigit(input[i])){
//check if buffer empty
if(strBuffer.length()==0){
strBuffer+=input[i];
}
//check if buffer is number
else if(isdigit(strBuffer[0]) || strBuffer[0]=='.' || strBuffer[0]=='+' || strBuffer[0]=='-'){
strBuffer+=input[i];
}
//if buffer not empty and not number
else{
if(isFunction(strBuffer)){
operators.push_back(strBuffer);
}
else if(isDefined(strBuffer)){
output.push(retVariable(strBuffer));
}
strBuffer = input[i];
}
}
//check if is an operator
else if(isOperator(input[i])){
if(strBuffer.length() == 0 && (input[i]=='+' || input[i]=='-') && !isFunction(output.back())){
strBuffer += input[i];
continue;
}
//push buffer
else{
if(isFunction(strBuffer)){
operators.push_back(strBuffer);
}
else if(isDefined(strBuffer)){
output.push(retVariable(strBuffer));
}
else if(strBuffer.length()>0){
output.push(strBuffer);
}
strBuffer = "";
}
while(operators.size()!=0 && operators.back() != "(" && !isFunction(operators.back()) && (retPrecedence(input[i]) <= retPrecedence(operators.back()[0])) && input[i] != '^'){
output.push(operators.back());
operators.pop_back();
}
operators.push_back(std::string(1,input[i]));
}
else if(input[i] == '('){
operators.push_back(std::string(1,input[i]));
}
else if(input[i] == ')'){
while(operators.size() != 0 && operators.back()!="("){
if(strBuffer.length() != 0){
if(isFunction(strBuffer)){
operators.push_back(strBuffer);
}
else if(isDefined(strBuffer)){
output.push(retVariable(strBuffer));
}
else{
output.push(strBuffer);
}
strBuffer = "";
}
output.push(operators.back());
operators.pop_back();
}
if(operators.size() != 0 && operators.back() == "("){
operators.pop_back();
}
else{
std::cout << "[ERROR] Incomplete right paranthesis at position " << (i + 1) << std::endl;
std::exit(1);
}
if(operators.size() !=0 && isFunction(operators.back())){
output.push(operators.back());
operators.pop_back();
}
}
else{
if(strBuffer.length()!=0 && (isdigit(strBuffer[0]) || strBuffer[0]=='.' || strBuffer[0]=='+' || strBuffer[0]=='-') ){
if(input[i] == '.'){
strBuffer+=input[i];
}
else{
output.push(strBuffer);
strBuffer = input[i];
}
}
else if(isFunction(strBuffer)){
operators.push_back(strBuffer);
strBuffer = input[i];
}
else{
strBuffer+=input[i];
}
}
}
//check if strbuffer empty
if(strBuffer.length()!=0){
if(isDefined(strBuffer)){
output.push(retVariable(strBuffer));
}
else{
output.push(strBuffer);
}
}
//check if operator stack empty
while(operators.size()!=0){
if(operators.back() == "(" ){
std::cout << "[ERROR] You have mismatched paranthesis.\n";
std::exit(1);
}
output.push(operators.back());
operators.pop_back();
}
return output;
} //shunning-yard algorithm
//returns postfix expression as string, from queue input
std::string parserObj::printShun(std::queue <std::string> outputList){
std::string output = "";
std::queue <std::string> bufferq = outputList; //maybe unnecessary duplication
while(bufferq.size()>0){
output += bufferq.front();
bufferq.pop();
}
return output;
}
//returns result as float, from queue input
float parserObj::readShun(std::queue <std::string> outputList){
float result = 0.0;
std::vector <float> varStack; //variables are stored in this stack and finally one variable should be left here.
while(outputList.size()>0){
//if token is an operator
if(outputList.front().length() == 1 && isOperator(outputList.front()[0])){
execOperation(&varStack,outputList.front());
}
else if(isFunction(outputList.front())){
//execute function
execFunction(&varStack,outputList.front());
}
else{
varStack.push_back(strtof(outputList.front().c_str(),nullptr));
}
outputList.pop();
}
if(varStack.size() == 1){
return varStack[0];
}
else{
std::cout << "[ERROR] Operations incomplete.\n";
std::exit(1);
}
}
//executes operation on the given variable stack and operator
void execOperation(std::vector <float> *stackp, std::string optr){
float fItem = stackp->at(stackp->size() -2); //second last variable in variable stack
float sItem = stackp->at(stackp->size() -1); //last variable in variable stack
stackp->pop_back();
stackp->pop_back();
switch (optr[0])
{
case '+':
stackp->push_back(fItem+sItem);
break;
case '-':
stackp->push_back(fItem-sItem);
break;
case '*':
stackp->push_back(fItem*sItem);
break;
case '/':
stackp->push_back(fItem/sItem);
break;
case '^':
stackp->push_back(powf(fItem,sItem)); //apply function for finding power of floats
break;
case '%':
stackp->push_back(fmod(fItem,sItem)); //apply function for finding modulo of floats
break;
default:
std::cout << "[ERROR] Undefined operator.\n";
std::exit(1);
}
}
unsigned short retPrecedence(char operatorToken){
switch (operatorToken)
{
case '+':
return 2;
case '-':
return 2;
case '*':
return 3;
case '/':
return 3;
case '^':
return 4;
case '.': //can change
return 0;
case '%':
return 3;
case '(':
return 1;
case ')':
return 1;
default:
return 1000;
}
}
bool isOperator(char buffer){
if(std::find(operatorList.begin(),operatorList.end(), buffer) != operatorList.end()){
return true;
}
else{
return false;
}
}
bool isDefined(std::string buffer){
if(std::find(definedVars.begin(),definedVars.end(), buffer) != definedVars.end()){
return true;
}
else{
return false;
}
}
bool isFunction(std::string buffer){
if(std::find(operationFunctions.begin(),operationFunctions.end(), buffer) != operationFunctions.end()){
return true;
}
else{
return false;
}
}