-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc3.java
More file actions
164 lines (137 loc) · 4.53 KB
/
calc3.java
File metadata and controls
164 lines (137 loc) · 4.53 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
/*
https://ruslanspivak.com/lsbasi-part3/
Old Case:
"1+1"
"27 + 3"
"27 - 7"
New Case:
"100"
"7 - 3 + 2 - 1"
Parser / Interpreter
expr -> term ((PLUS|MINUS) term)*
term -> INTEGER
*/
class Solution {
public enum Type {
PLUS,
MINUS,
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 Interpreter {
private String text;
private int pos;
private char currentChar;
private Token currentToken;
private static final char NONE = '$';
Interpreter(String text) {
this.text = text;
this.pos = 0; //Current position to be consumed
this.currentToken = null;
this.currentChar = text.charAt(pos);
}
void advance() {
pos++;
if (pos == text.length()) {
currentChar = NONE;
} else {
currentChar = text.charAt(pos);
}
}
void skipWhitespace() {
while (currentChar != NONE && Character.isSpace(currentChar)) {
advance();
}
}
private int integer() {
StringBuilder sb = new StringBuilder();
while (currentChar != NONE && Character.isDigit(currentChar)) {
sb.append(currentChar);
advance();
}
return Integer.parseInt(sb.toString());
}
private int term() throws Exception {
Token token = currentToken;
eat(Type.INTEGER);
return token.value;
}
private Token getNextToken() throws Exception {
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 {
throw new Exception("Unregonized Character: " + currentChar);
}
}
return new Token(Type.EOF, 0);
}
private void eat(Type tokenType) throws Exception {
if (currentToken.type != tokenType) {
throw new Exception("Expected token: " + tokenType + ", actual token " + currentToken.type);
}
this.currentToken = getNextToken();
}
public int expr() throws Exception {
//set current token to the first token taken from the input
currentToken = getNextToken();
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;
}
}
int calculate(String text) {
int result = 0;
Interpreter interpreter = new Interpreter(text);
try {
result = interpreter.expr();
} catch (Exception e) {
System.out.println(e);
}
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);
}
}
}