-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc8.java
331 lines (281 loc) · 9.61 KB
/
calc8.java
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
/*
https://ruslanspivak.com/lsbasi-part8/
Visitor Pattern: https://www.baeldung.com/java-visitor-pattern
Old Case:
"1+1"
"27 + 3"
"27 - 7"
"100"
"7 - 3 + 2 - 1"
"10 /2 * 3" ==> 15
"14 + 2 * 3 - 6 / 2" ==> 17
New Case:
"7 + 3 * (10 / (12 / (3 + 1) - 1))" ==> 22
New Case:
"0---2147483648"
Parser / Interpreter
expr -> term ((PLUS|MINUS) term)*
term -> factor ((MUL|DIV) factor)*
factor -> (PLUS|MINUS)FACTOR | INTEGER | LPAREN expr RPAREN
*/
class Solution {
//==== Lexer: String -> Token =====
public enum Type {
PLUS, MINUS,
MUL, DIV,
LPAREN, RPAREN,
INTEGER,
EOF //End of file
}
class Token {
private Type type;
private int value;
private static final int NAN = 0;
Token(Type type) {
this.type = type;
this.value = NAN;
}
Token(Type type, int value) {
this.type = type;
this.value = value;
}
public String toString() {
return "(" + type + "," + value + ")";
}
}
class Lexer {
private String text;
private int pos;
private char currentChar;
private static final char NONE = '$';
Lexer(String text) {
this.text = text;
this.pos = 0; //Current position to be consumed
this.currentChar = text.charAt(pos);
}
private void advance() {
pos++;
currentChar = pos < text.length() ? text.charAt(pos) : NONE;
}
private void skipWhitespace() {
while (currentChar != NONE && Character.isSpace(currentChar)) {
advance();
}
}
private int integer() {
int result = 0;
while (currentChar != NONE && Character.isDigit(currentChar)) {
result = result * 10 + (currentChar - '0');
advance();
}
return result;
}
public Token getNextToken() {
while (currentChar != NONE) {
if (Character.isSpace(currentChar)) {
skipWhitespace();
continue;
} else if (Character.isDigit(currentChar)) {
return new Token(Type.INTEGER, integer());
} else if (currentChar == '+') {
advance();
return new Token(Type.PLUS);
} else if (currentChar == '-') {
advance();
return new Token(Type.MINUS);
} else if (currentChar == '*') {
advance();
return new Token(Type.MUL);
} else if (currentChar == '/') {
advance();
return new Token(Type.DIV);
} else if (currentChar == '(') {
advance();
return new Token(Type.LPAREN);
} else if (currentChar == ')') {
advance();
return new Token(Type.RPAREN);
} else {
System.out.println("LEXER: Invalid Character: " + currentChar);
}
}
return new Token(Type.EOF);
}
}
//==== Parser: Token -> TreeNode =====
public abstract class Node {
public Token token;
public Node(Token token) {
this.token = token;
}
public abstract int accept(Visitor v);
}
public class BinOpNode extends Node {
public Node left;
public Node right;
public BinOpNode(Node left, Token op, Node right) {
super(op);
this.left = left;
this.right = right;
}
public int accept(Visitor v) {
return v.visit(this);
}
}
public class UnaryOpNode extends Node {
public Node expr;
public UnaryOpNode(Token op, Node expr) {
super(op);
this.expr = expr;
}
public int accept(Visitor v) {
return v.visit(this);
}
}
public class NumNode extends Node {
public NumNode(Token token) {
super(token);
}
public int accept(Visitor v) {
return v.visit(this);
}
}
class Parser {
private Lexer lexer;
private Token currentToken;
Parser(Lexer lexer) {
this.lexer = lexer;
this.currentToken = lexer.getNextToken();
}
private void eat(Type tokenType) {
System.out.println(currentToken);
if (currentToken.type != tokenType) {
System.out.println("Invalid Syntax: Expected token: " + tokenType + ", actual token " + currentToken.type);
}
currentToken = lexer.getNextToken();
}
private Node factor() {
Token token = currentToken;
if (token.type == Type.PLUS) {
eat(Type.PLUS);
Node node = new UnaryOpNode(token, factor());
return node;
} else if (token.type == Type.MINUS) {
eat(Type.MINUS);
Node node = new UnaryOpNode(token, factor());
return node;
} else if (token.type == Type.INTEGER) {
eat(Type.INTEGER);
return new NumNode(token);
} else if (token.type == Type.LPAREN) {
eat(Type.LPAREN);
Node node = expr();
eat(Type.RPAREN);
return node;
}
System.out.println("Invalid Syntax in factor()");
return null; //Should never reach here
}
private Node term() {
Node node = factor();
while (currentToken.type == Type.MUL || currentToken.type == Type.DIV) {
Token token = currentToken;
if (token.type == Type.MUL) {
eat(Type.MUL);
} else if (token.type == Type.DIV) {
eat(Type.DIV);
}
node = new BinOpNode(node, token, factor());
}
return node;
}
private Node expr() {
//set current token to the first token taken from the input
Node node = term();
while (currentToken.type == Type.PLUS || currentToken.type == Type.MINUS) {
Token token = currentToken;
if (token.type == Type.PLUS) {
eat(Type.PLUS);
} else if (token.type == Type.MINUS) {
eat(Type.MINUS);
}
node = new BinOpNode(node, token, term());
}
return node;
}
public Node parse() {
return expr();
}
}
//------Interpreter---------
public interface Visitor {
int visit(BinOpNode binOp);
int visit(UnaryOpNode unaryOp);
int visit(NumNode num);
}
public class Interpreter implements Visitor {
private Parser parser;
Interpreter(Parser parser) {
this.parser = parser;
}
@Override
public int visit(BinOpNode binOp) {
switch (binOp.token.type) {
case PLUS:
return binOp.left.accept(this) + binOp.right.accept(this);
case MINUS:
return binOp.left.accept(this) - binOp.right.accept(this);
case MUL:
return binOp.left.accept(this) * binOp.right.accept(this);
case DIV:
return binOp.left.accept(this) / binOp.right.accept(this);
}
System.out.println("Interpreter Error: BinaryOp Should not reach here");
return 0;
}
@Override
public int visit(UnaryOpNode unaryOp) {
System.out.println("processing UnaryNode");
switch (unaryOp.token.type) {
case PLUS:
return unaryOp.expr.accept(this);
case MINUS:
return -1 * unaryOp.expr.accept(this);
}
System.out.println("Interpreter Error: UnaryOp Should not reach here");
return 0;
}
@Override
public int visit(NumNode num) {
System.out.println("processing NumNode");
return num.token.value;
}
public int interpret() {
Node tree = parser.parse();
System.out.println(tree.token.type);
return tree.accept(this);
}
}
public int calculate(String text) {
Lexer lexer = new Lexer(text);
Parser parser = new Parser(lexer);
Interpreter interpreter = new Interpreter(parser);
int result = interpreter.interpret();
return result;
}
}
public class MainClass {
public static String stringToString(String input) {
return JsonArray.readFrom("[" + input + "]").get(0).asString();
}
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String line;
while ((line = in.readLine()) != null) {
String s = stringToString(line);
int ret = new Solution().calculate(s);
String out = String.valueOf(ret);
System.out.println(out);
}
}
}