-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLC772_BasicCalculatorIII.java
More file actions
220 lines (189 loc) · 6.57 KB
/
LC772_BasicCalculatorIII.java
File metadata and controls
220 lines (189 loc) · 6.57 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
/*
https://ruslanspivak.com/lsbasi-part8/
Without using AST
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
Parser / Interpreter
expr -> term ((PLUS|MINUS) term)*
term -> factor ((MUL|DIV) factor)*
factor -> (PLUS|MINUS)FACTOR | INTEGER | LPAREN expr RPAREN
*/
class Solution {
public enum Type {
PLUS, MINUS,
MUL, DIV,
LPAREN, RPAREN,
INTEGER,
EOF //End of file
}
class Token {
private Type type;
private int value;
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++;
if (pos == text.length()) {
currentChar = NONE;
} else {
currentChar = text.charAt(pos);
}
}
private void skipWhitespace() {
while (currentChar != NONE && Character.isSpace(currentChar)) {
advance();
}
}
private int integer() {
//StringBuilder sb = new StringBuilder();
int result = 0;
while (currentChar != NONE && Character.isDigit(currentChar)) {
//sb.append(currentChar);
result = result * 10 + (currentChar - '0');
advance();
}
return result;
//return Integer.parseInt(sb.toString());
}
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, 0);
} else if (currentChar == '-') {
advance();
return new Token(Type.MINUS, 0);
} else if (currentChar == '*') {
advance();
return new Token(Type.MUL, 0);
} else if (currentChar == '/') {
advance();
return new Token(Type.DIV, 0);
} else if (currentChar == '(') {
advance();
return new Token(Type.LPAREN, 0);
} else if (currentChar == ')') {
advance();
return new Token(Type.RPAREN, 0);
} else {
System.out.println("LEXER: Invalid Character: " + currentChar);
}
}
return new Token(Type.EOF, 0);
}
}
class Interpreter {
private Lexer lexer;
private Token currentToken;
Interpreter(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 int factor() {
Token token = currentToken;
if (token.type == Type.PLUS) {
eat(Type.PLUS);
return factor();
} else if (token.type == Type.MINUS) {
eat(Type.MINUS);
return -1 * factor();
} else if (token.type == Type.INTEGER) {
eat(Type.INTEGER);
return token.value;
} else if (token.type == Type.LPAREN) {
eat(Type.LPAREN);
int result = expr();
eat(Type.RPAREN);
return result;
}
System.out.println("Invalid Syntax in factor()");
return -1; //Should never reach here
}
private int term() {
int result = factor();
while (currentToken.type == Type.MUL || currentToken.type == Type.DIV) {
Token token = currentToken;
if (token.type == Type.MUL) {
eat(Type.MUL);
result = result * factor();
} else if (token.type == Type.DIV) {
eat(Type.DIV);
result = result / factor();
}
}
return result;
}
private int expr() {
//set current token to the first token taken from the input
int result = term();
while (currentToken.type == Type.PLUS || currentToken.type == Type.MINUS) {
Token token = currentToken;
if (token.type == Type.PLUS) {
eat(Type.PLUS);
result = result + term();
} else if (token.type == Type.MINUS) {
eat(Type.MINUS);
result = result - term();
}
}
return result;
}
}
public int calculate(String text) {
Lexer lexer = new Lexer(text);
Interpreter interpreter = new Interpreter(lexer);
int result = interpreter.expr();
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);
}
}
}