码迷,mamicode.com
首页 > 其他好文 > 详细

241. Different Ways to Add Parentheses

时间:2016-07-30 06:53:05      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

需要用递归来做,把input从头到尾走一遍,如果是符号的话,递归算出两边可能的结果,再计算所有的组合。

当然退出的条件是,如果整个input就是一个操作数,那么就把这个数加到结果中去

 1     public List<Integer> diffWaysToCompute(String input) {
 2         List<Integer> res = new ArrayList<Integer>();
 3         if(input == null || input.length() == 0) {
 4             return res;
 5         }
 6         for(int i = 0; i < input.length(); i++) {
 7             char x = input.charAt(i);
 8             if(x == ‘+‘ || x == ‘-‘ || x == ‘*‘) {
 9                 List<Integer> left = diffWaysToCompute(input.substring(0,i));
10                 List<Integer> right = diffWaysToCompute(input.substring(i+1));
11                 for(int eachLeft: left) {
12                     for(int eachRight: right) {
13                         if(x == ‘+‘) {
14                             res.add(eachLeft + eachRight);
15                         } else if(x == ‘-‘) {
16                             res.add(eachLeft - eachRight);
17                         } else {
18                             res.add(eachLeft * eachRight);
19                         }
20                     }
21                 }
22             }
23         }
24         if(res.isEmpty()) {
25             res.add(Integer.valueOf(input));
26         }
27         return res;
28     }

 

241. Different Ways to Add Parentheses

标签:

原文地址:http://www.cnblogs.com/warmland/p/5720081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!