CS-Notes/docs/notes/Leetcode 题解 - 分治.md

52 lines
1.5 KiB
Markdown
Raw Normal View History

2019-03-08 21:41:45 +08:00
<!-- GFM-TOC -->
* [1. 给表达式加括号](#1-给表达式加括号)
<!-- GFM-TOC -->
2019-03-08 20:31:07 +08:00
2019-03-08 21:41:45 +08:00
# 1. 给表达式加括号
[241. Different Ways to Add Parentheses (Medium)](https://leetcode.com/problems/different-ways-to-add-parentheses/description/)
2019-03-08 20:31:07 +08:00
```html
2019-03-08 21:41:45 +08:00
Input: "2-1-1".
2019-03-08 20:31:07 +08:00
2019-03-08 21:41:45 +08:00
((2-1)-1) = 0
(2-(1-1)) = 2
2019-03-08 20:31:07 +08:00
2019-03-08 21:41:45 +08:00
Output : [0, 2]
2019-03-08 20:31:07 +08:00
```
```java
2019-03-08 21:41:45 +08:00
public List<Integer> diffWaysToCompute(String input) {
List<Integer> ways = new ArrayList<>();
for (int i = 0; i < input.length(); i++) {
char c = input.charAt(i);
if (c == '+' || c == '-' || c == '*') {
List<Integer> left = diffWaysToCompute(input.substring(0, i));
List<Integer> right = diffWaysToCompute(input.substring(i + 1));
for (int l : left) {
for (int r : right) {
switch (c) {
case '+':
ways.add(l + r);
break;
case '-':
ways.add(l - r);
break;
case '*':
ways.add(l * r);
break;
}
}
}
}
}
if (ways.size() == 0) {
ways.add(Integer.valueOf(input));
}
return ways;
2019-03-08 20:31:07 +08:00
}
```
2019-03-09 23:59:22 +08:00
</br></br><div align="center">欢迎关注公众号,获取最新文章!</div></br>
2019-03-11 09:18:22 +08:00
<div align="center"><img width="180px" src="https://cyc-1256109796.cos.ap-guangzhou.myqcloud.com/%E5%85%AC%E4%BC%97%E5%8F%B7.jpg"></img></div>