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".

((2-1)-1) = 0
(2-(1-1)) = 2

Output: [0, 2]

Example 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.

Unique Binary Search Trees II思路类似,可以对照看。

本题参考Gcdofree的做法

左右子串分别计算所有可能,然后全排列。

class Solution {
public:
vector<int> diffWaysToCompute(string input) {
vector<int> ret;
for(int i = ; i < input.size(); i ++)
{
if(input[i] == '+' || input[i] == '-' || input[i] == '*')
{
vector<int> left = diffWaysToCompute(input.substr(, i));
vector<int> right = diffWaysToCompute(input.substr(i+));
for(int j = ; j < left.size(); j ++)
{
for(int k = ; k < right.size(); k ++)
{
if(input[i] == '+')
ret.push_back(left[j] + right[k]);
else if(input[i] == '-')
ret.push_back(left[j] - right[k]);
else
ret.push_back(left[j] * right[k]);
}
}
}
}
if(ret.empty())
ret.push_back(atoi(input.c_str()));
return ret;
}
};

最新文章

  1. js document.createElement()的用法 (转)
  2. HDU 1106 排序 题解
  3. php dirname(__FILE__) 获取当前文件的绝对路径 (转)
  4. lazyload.js详解
  5. .NET设计模式(12):外观模式(Fa&#231;ade Pattern)(转)
  6. React Native学习-调取摄像头第三方组件:react-native-image-picker
  7. cocos2d_随手篇1_关于ccTouchBegan的调用
  8. CALayer -- 备忘
  9. Android应用开发学习之图片切换器
  10. 打开SQL Server 配置管理器时出现了问题
  11. javascript深入理解js闭包(看了挺多的,感觉这篇比较透彻)
  12. angular.js之作用域scope&#39;@&#39;,&#39;=&#39;,&#39;&amp;&#39;
  13. CentOS7+CDH5.14.0安装全流程记录,图文详解全程实测-5安装JDK及安装mysql数据库
  14. Eclipse的设置
  15. vi中换行、翻页和查找功能
  16. cmd 查看端口
  17. [Oracle]PDB Clone 方法
  18. eclipse引入系统类库
  19. lambda,reduce,filter用法
  20. XAML实时显示更新插件LiveXAML

热门文章

  1. 分享20款移动开发中很有用的 jQuery 插件
  2. 一句话知识:如何解决winform自动缩放产生的布局问题.
  3. tomcat accesslog日志扩展
  4. iOS中的交换空间(swap space)
  5. 使用用户自定义类型 CLR UDT
  6. Jenkins 2.0 要来了
  7. Memcache学习整理
  8. linux小技巧
  9. Source Insight常用功能设置
  10. IP分片重组的分析和常见碎片攻击 v0.2