-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc2.java
More file actions
157 lines (130 loc) · 4.36 KB
/
calc2.java
File metadata and controls
157 lines (130 loc) · 4.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
/*
https://ruslanspivak.com/lsbasi-part2/
Handle whitespace, multi-digit integer and subtraction
Parser / Interpreter
expr -> INTEGER PLUS INTEGER
expr -> INTEGER MINUS 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();
}
}
int integer() {
StringBuilder sb = new StringBuilder();
while (currentChar != NONE && Character.isDigit(currentChar)) {
sb.append(currentChar);
advance();
}
return Integer.parseInt(sb.toString());
}
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);
}
void eat(Type tokenType) throws Exception {
if (currentToken.type != tokenType) {
throw new Exception("Expected token: " + tokenType + ", actual token " + currentToken.type);
}
this.currentToken = getNextToken();
}
int expr() throws Exception {
currentToken = getNextToken();
Token left = this.currentToken;
eat(Type.INTEGER);
Token op = currentToken;
if (op.type == Type.PLUS) {
eat(Type.PLUS);
} else {
eat(Type.MINUS);
}
Token right = currentToken;
eat(Type.INTEGER);
int result;
if (op.type == Type.PLUS) {
result = left.value + right.value;
} else {
result = left.value - right.value;
}
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);
}
}
}