-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostFix.java
More file actions
283 lines (205 loc) · 6.36 KB
/
postFix.java
File metadata and controls
283 lines (205 loc) · 6.36 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
package calculator;
import java.util.StringTokenizer;
public class postFix {
final String[][] PRECEDENCE = {{"+", "-"}, {"*", "/"},{"^"}};
// STEART OF HELPER METHODS
/**
* @param take an String number as input v
* this method checks if the String is a number or not
*/
public boolean isNum(String str) {
return Character.isDigit(str.charAt(0));
}
/**
* @param take an String operator as input
* @return this method return the precedence of the input operator
*/
public int precedenceValue(String operator) {
for (int i = 0; i < PRECEDENCE.length; i++) {
for (int j = 0; j < PRECEDENCE[i].length; j++) {
if (PRECEDENCE[i][j].equals(operator)) {
return i;
}
}
}
return 0;
}
/**
* @param take an String operator as input
* the method is for checking whether the input is an operator or not
* @return this method return the boolean
*/
public boolean isOperator(String operator) {
return operator.equals("^") || operator.equals("*") ||
operator.equals("/") || operator.equals("+") || operator.equals("-");
}
/**
* @param take an String operator as input
* the method is for checking whether the input is a left associative operator or not
* @return this method return the boolean
*/
public boolean isLeftAssociative(String operator) {
return operator.equals("*") || operator.equals("/") || operator.equals("+") || operator.equals("-");
}
public double doExpression(Queue Qin) {
Queue outputQueue = new Queue();
Stack operatorStack = new Stack();
// if t has more tokens
while (Qin.front != null) {
String cur = Qin.DeQueue();
// if the token is a num
if (isNum(cur)) {
// push it to the output queue
outputQueue.EnQueue(cur);
}
// when the token is an operator
else if (isOperator(cur)){
while (operatorStack.getTop() != null &&
((isOperator(operatorStack.getTop()) && precedenceValue(operatorStack.getTop()) > precedenceValue(cur))
|| (isOperator(operatorStack.getTop()) && precedenceValue(operatorStack.getTop()) == precedenceValue(cur) && isLeftAssociative(cur))
&& !operatorStack.getTop().equals("("))){
// pop the operators from the stack onto output queue
outputQueue.EnQueue(operatorStack.pop());
}
// push cur onto the operator stack
operatorStack.push(cur);
}
// if the token is (
else if (cur.equals("(")) {
// push onto the operation stack
operatorStack.push(cur);
}
// if the token is )
else if (cur.equals(")")) {
try {
while (!operatorStack.getTop().equals("(")) {
// pop the operators from the stack onto output queue
outputQueue.EnQueue(operatorStack.pop());
/* handling the parenthesis doesn't match case */
}
if (operatorStack.getTop().equals("(")) {
operatorStack.pop();
}
}
catch (NullPointerException e) {
operatorStack = null;
}
}
}
try {
while (operatorStack.getTop() != null) {
String curElement = operatorStack.pop();
// check if it's a parenthesis
if (curElement.contentEquals(")") || curElement.contentEquals("(") ) {
// set the operatorStack to null so the NullPointerException can be catched later
operatorStack = null;
}
else {
outputQueue.EnQueue( curElement );
}
}
}
catch(NullPointerException e) {
// catch the exception so that program won't crash
}
double result = PostEval(outputQueue);
return result;
}
private double PostEval(Queue PostFix) {
// used to store the result
Double result;
Stack stack = new Stack();
String OP_A;
String OP_B;
Double A;
Double B;
// take an element from the PostFix queue
String token;
// keep retrieving data from the PistFix until it's empty
while (PostFix.front != null) {
// read a token from the queue
token = PostFix.DeQueue();
// testing token...
switch (token) {
// if the token is an operator
case "+":
// pop two operands from the stack
OP_A = stack.pop();
OP_B = stack.pop();
// convert the String into double
A = Double.parseDouble(OP_A);
B = Double.parseDouble(OP_B);
// calculate the result
result = B + A;
// push it back to the stack
stack.push(Double.toString(result));
break;
case "-":
// pop two operands from the stack
OP_A = stack.pop();
OP_B = stack.pop();
// convert the String into double
A = Double.parseDouble(OP_A);
B = Double.parseDouble(OP_B);
// calculate the result
result = B - A;
// push it back to the stack
stack.push(Double.toString(result));
break;
case "*":
// pop two operands from the stack
OP_A = stack.pop();
OP_B = stack.pop();
// convert the String into double
A = Double.parseDouble(OP_A);
B = Double.parseDouble(OP_B);
// calculate the result
result = B * A;
// push it back to the stack
stack.push(Double.toString(result));
break;
case "/":
// pop two operands from the stack
OP_A = stack.pop();
OP_B = stack.pop();
// convert the String into double
A = Double.parseDouble(OP_A);
B = Double.parseDouble(OP_B);
// calculate the result
result = B / A;
// push it back to the stack
stack.push(Double.toString(result));
break;
case "^":
OP_A = stack.pop();
OP_B = stack.pop();
// convert the String into double
A = Double.parseDouble(OP_A);
B = Double.parseDouble(OP_B);
// calculate the result
result = Math.pow(B, A);
// push it back to the stack
stack.push(Double.toString(result));
break;
// if token is an operand
default:
stack.push(token);
break;
}
}
result = Double.parseDouble(stack.pop());
return result;
}
// push the string arg into Qin
public void parse(String arg, Queue Qin) {
// make a StringTokenizer
StringTokenizer t = new StringTokenizer(arg, "/+*-^()", true);
// bulidng up the Qin
while (t.hasMoreTokens()) {
String curToken = t.nextToken();
// strip the empty
curToken = curToken.strip();
Qin.EnQueue(curToken);
}
}
}