前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >parentheses - 241. Different Ways to Add Parentheses

parentheses - 241. Different Ways to Add Parentheses

作者头像
ppxai
发布2020-09-23 17:16:23
3460
发布2020-09-23 17:16:23
举报
文章被收录于专栏:皮皮星球
  1. Different Ways to Add Parentheses

Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and operators. The valid operators are +- and *.

Example 1:

Input: "2-1-1" Output: [0, 2] Explanation: ((2-1)-1) = 0 (2-(1-1)) = 2

Example 2:

代码语言:javascript
复制
Input: "2*3-4*5"
Output: [-34, -14, -10, -10, 10]
Explanation:  (2*(3-(4*5))) = -34 
((2*3)-(4*5)) = -14 
((2*(3-4))*5) = -10 
(2*((3-4)*5)) = -10 
(((2*3)-4)*5) = 10

思路:

题目意思是给一个字符串只含有加减乘字符和数字,让添加括号,计算出等式的结果,返回所有的结果,这种返回所有结果的题目,多半就是使用回溯来做,不同的是,这里的回溯是有记忆的回溯,解题思路就是根据标点符号进行切割字符串,然后递归求解,求解两部分的笛卡尔积。(可以用一个map来记录字符串计算结果,如果计算过就直接返回。来减少计算量。)

代码:

java:

代码语言:javascript
复制
class Solution {

    
    private Map<String, List<Integer>> mem = new HashMap<>();
    
    public List<Integer> diffWaysToCompute(String input) {
        if (mem.containsKey(input)) return mem.get(input);
        
        List<Integer> res = new ArrayList<>();
        
        for (int i = 0; i < input.length(); i++) {
            char c = input.charAt(i);
            if (!(c == '+' || c == '-' || c == '*')) continue;
            
            List<Integer> left = diffWaysToCompute(input.substring(0, i));
            List<Integer> right = diffWaysToCompute(input.substring(i+1));
            
            // 笛卡尔积
            for (Integer l : left) {
                for (Integer r : right) {
                    int temp = 0;
                    if (c == '+') temp = r + l;
                    else if (c == '-') temp = l - r;
                    else /*(c == '*')*/ temp = l * r;
                    res.add(temp);
                }
            }
        }
        
        if (res.isEmpty()) res.add(Integer.parseInt(input));
        mem.put(input, res);
        return res;
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019年07月23日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档