-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDifferentWaysToAddParentheses.java
39 lines (38 loc) · 1.34 KB
/
DifferentWaysToAddParentheses.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
/*https://leetcode.com/problems/different-ways-to-add-parentheses/*/
class Solution {
public List<Integer> diffWaysToCompute(String expression) {
List<Integer> result = new ArrayList<>();
if (expression.length() == 0)
return result;
for (int i = 0; i < expression.length(); i++)
{
char c = expression.charAt(i);
if (c == '+' || c == '-' || c == '*')
{
List<Integer> left = diffWaysToCompute(expression.substring(0, i));
List<Integer> right = diffWaysToCompute(expression.substring(i+1));
for (int l : left)
{
for (int r : right)
{
switch (c)
{
case '+':
result.add(l+r);
break;
case '-':
result.add(l-r);
break;
case '*':
result.add(l*r);
break;
}
}
}
}
}
if (result.size() == 0)
result.add(Integer.parseInt(expression));
return result;
}
}