-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleetCode_150.java
More file actions
32 lines (31 loc) · 979 Bytes
/
Copy pathleetCode_150.java
File metadata and controls
32 lines (31 loc) · 979 Bytes
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
class Solution {
public int evalRPN(String[] tokens) {
Stack<Integer> stack = new Stack<>();
for(int i =0 ; i<tokens.length; i++){
if(tokens[i].equals("+")){
int rhs = stack.pop();
int lhs = stack.pop();
stack.push(lhs+rhs);
}
else if(tokens[i].equals("*")){
int rhs = stack.pop();
int lhs = stack.pop();
stack.push(lhs*rhs);
}
else if(tokens[i].equals("/")){
int rhs = stack.pop();
int lhs = stack.pop();
stack.push(lhs/rhs);
}
else if(tokens[i].equals("-")){
int rhs = stack.pop();
int lhs = stack.pop();
stack.push(lhs-rhs);
}
else{
stack.push(Integer.parseInt(tokens[i]));
}
}
return stack.pop();
}
}