forked from terrytong0876/LintCode-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpression Evaluation.java
executable file
·151 lines (132 loc) · 3.66 KB
/
Expression Evaluation.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
H
Build Expression Tree的另外一个变形,依然Min Tree.
build好Min Tree以后,做PostTraversal. Divde and Conquer:
先recursively找到 left和right的大小, 然后evaluate中间的符号。
Note:
1. Handle数字时,若left&&right Child全Null,那必定是我们weight最大的数字node了。
2. 若有个child是null,那就return另外一个node。
3. prevent Integer overflow during operation:过程中用个Long,最后结局在cast back to int.
```
/*
Given an expression string array, return the final result of this expression
Example
For the expression 2*6-(23+7)/(1+2), input is
[
"2", "*", "6", "-", "(",
"23", "+", "7", ")", "/",
(", "1", "+", "2", ")"
],
return 2
Note
The expression contains only integer, +, -, *, /, (, ).
Tags Expand
LintCode Copyright Stack
*/
/*
Thoughts:
Build expression tree, then traverse it in post-traversal order.
Tricky point: Whenever that's a operator, do operation. return final result.
*/
public class Solution {
/***** build expression tree******/
class TreeNode {
int val;
String s;
TreeNode left;
TreeNode right;
public TreeNode(int val, String s) {
this.val = val;
this.s = s;
this.left = null;
this.right = null;
}
}
public TreeNode build(String[] expression) {
Stack<TreeNode> stack = new Stack<TreeNode>();
int base = 0;
int val = 0;
for (int i = 0; i < expression.length; i++) {
if (expression[i].equals("(")) {
base += 10;
continue;
}
if (expression[i].equals(")")) {
base -= 10;
continue;
}
val = getWeight(base, expression[i]);
TreeNode node = new TreeNode(val, expression[i]);
while (!stack.isEmpty() && node.val <= stack.peek().val) {
node.left = stack.pop();
}
if (!stack.isEmpty()) {
stack.peek().right = node;
}
stack.push(node);
}
if (stack.isEmpty()) {
return null;
}
TreeNode rst = stack.pop();
while (!stack.isEmpty()) {
rst = stack.pop();
}
return rst;
}
//Calculate weight for characters
public int getWeight(int base, String s) {
if (s.equals("+") || s.equals("-")) {
return base + 1;
}
if (s.equals("*") || s.equals("/")) {
return base + 2;
}
return Integer.MAX_VALUE;
}
/***** build expression tree******/
/**
* @param expression: an array of strings;
* @return: an integer
*/
public int evaluateExpression(String[] expression) {
if (expression == null || expression.length == 0) {
return 0;
}
TreeNode root = build(expression);
if (root == null) {
return 0;
}
long rst = postTraversalEval(root);
return (int)rst;
}
public long postTraversalEval(TreeNode node) {
if (node == null) {
return 0;
}
if (node.left == null && node.right == null) {
return Long.parseLong(node.s);
}
long left = postTraversalEval(node.left);
long right = postTraversalEval(node.right);
if (node.left == null || node.right == null) {
return node.left == null ? right : left;
}
long rst = 0;
switch (node.s) {
case "*":
rst = left * right;
break;
case "/":
rst = left / right;
break;
case "+":
rst = left + right;
break;
case "-":
rst= left - right;
break;
}
return rst;
}
};
```