Fetch the repository succeeded.
/*
* @lc app=leetcode.cn id=241 lang=cpp
*
* [241] 为运算表达式设计优先级
*/
// @lc code=start
class Solution {
public:
unordered_map<string, vector<int>> memo;
vector<int> diffWaysToCompute(string expression) {
if (memo.find(expression) != memo.end()) {
return memo[expression];
}
if (expression.find_first_of("+-*") == expression.npos) {
return {stoi(expression)};
}
vector<int> ans;
int pos = 0;
while ((pos = expression.find_first_of("+-*", pos + 1)) != expression.npos) {
vector<int> left = diffWaysToCompute(expression.substr(0, pos)), right = diffWaysToCompute(expression.substr(pos + 1));
for (int l : left) {
for (int r : right) {
ans.emplace_back(expression[pos] == '+' ? l + r : expression[pos] == '-' ? l - r : l * r);
}
}
}
memo[expression] = ans;
return memo[expression];
}
};
// @lc code=end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。