首页 > 代码库 > [LeetCode] Different Ways to Add Parentheses
[LeetCode] Different Ways to Add Parentheses
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 *
.
Input: "2-1-1"
.
((2-1)-1) = 0 (2-(1-1)) = 2
Output: [0, 2]
Input: "2*3-4*5"
(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
Output: [-34, -14, -10, -10, 10]
Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.
解题思路;
这道题能够用递归的方法来做。对于一个输入字符串s,一次获得每一个标点符号的左側left和右側right的值,然后两两组合成结果。
class Solution { public: vector<int> diffWaysToCompute(string input) { vector<int> result; int len = input.length(); if(len == 0){ return result; } if(isInt(input)){ result.push_back(std::stoi(input)); return result; } for(int i=0; i<len; i++){ if(input[i]<‘0‘ || input[i]>‘9‘){ vector<int> leftResult = diffWaysToCompute(input.substr(0, i)); vector<int> rightResult = diffWaysToCompute(input.substr(i+1)); for(int m = 0; m<leftResult.size(); m++){ for(int n = 0; n<rightResult.size(); n++){ switch(input[i]){ case ‘+‘: result.push_back(leftResult[m] + rightResult[n]); break; case ‘-‘: result.push_back(leftResult[m] - rightResult[n]); break; case ‘*‘: result.push_back(leftResult[m] * rightResult[n]); break; } } } } } return result; } bool isInt(string& s){ int len = s.length(); for(int i=0; i<len; i++){ if(s[i]<‘0‘ || s[i]>‘9‘){ return false; } } return true; } };
[LeetCode] Different Ways to Add Parentheses
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。