Leetcode——241. Different Ways to Add Parentheses

2024-02-02 01:32

本文主要是介绍Leetcode——241. Different Ways to Add Parentheses,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

description

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]

solution

这一题挺难的,反正思想就是递归求解。递归可以把前后两部分从i位置处分开,然后依次计算前一部分和后一部分的各种可能的解。
递归的设计不太好想!

class Solution {
public:vector<int> diffWaysToCompute(string input) {if(input.size()==0) return {};vector<int>res;for(int i=0;i<input.size();i++){if(input[i]!='*'&&input[i]!='+'&&input[i]!='-') continue;vector<int> tem1=diffWaysToCompute(input.substr(0,i));auto tem2=diffWaysToCompute(input.substr(i+1));for(auto vec1:tem1)for(auto vec2:tem2){switch(input[i]){case '+':res.push_back(vec1+vec2);break;case '-':res.push_back(vec1-vec2);break;case '*':res.push_back(vec1*vec2);break;default:break;}}}if(res.size()==0)return vector<int>{stoi(input)};elsereturn res;}
};

自己写的不对的代码:
每次求取两个数的运算,把n个数的运算转化为n-1个,依次递减到2个数的运算。
但是存在重复的问题:
写了半天,也粘贴出来:

class Num241 {//递归求解
public:vector<int> diffWaysToCompute(string input) {vector<int> res;vector<int> num;vector<char>ope;int i = 0;while (i<input.length()){int a = 0;int sign = 1;while (i<input.length() && (isdigit(input[i]) || (input[i] == '-' && (!isdigit(input[i + 1])))))//类似2-1这种{if (input[i] == '-') sign = -1;elsea = a * 10 + (input[i] - '0');i++;}num.push_back(a);if (i<input.length())ope.push_back(input[i]);i++;}int count = num.size();helper(res, num, ope);return res;//unordered_map<int,int> resres;//unordered_map<int, int>::iterator it;//for (int i = 0;i < res.size();i++)//{//      resres[res[i]] = 1;//}//vector<int> newres;//for (it = resres.begin();it != resres.end();it++)//  newres.push_back(it->first);//return newres;}
private:void helper(vector<int>& res, vector<int> num, vector<char>ope){if (num.size() == 2){int a = num[0], b = num[1];cout <<"res"<< a << " " << b <<" "<< ope[0]<<endl;switch (ope[0]){case '+':res.push_back(a + b);break;case '-':res.push_back(a - b);break;case '*':res.push_back(a*b);break;default:break;}//return;}else{for (int i = 0; i<num.size() - 1; i++)//{int temp = 0;int a = num[i], b = num[i + 1];cout << a << " " << b << endl;switch (ope[i]){case '+':temp = a + b;break;case '-':temp = a - b;break;case '*':temp = a*b;break;default:break;}vector<int> num_copy(num);vector<char> ope_copy(ope);num_copy[i] = temp;num_copy.erase(num_copy.begin() + i + 1);ope_copy.erase(ope_copy.begin() + i);helper(res, num_copy, ope_copy);}}}
};

另外一种递归方法(去重复):

class Solution {
public:vector<int> diffWaysToCompute(string input) {unordered_map<string, vector<int>> dpMap;return computeWithDP(input, dpMap);}vector<int> computeWithDP(string input, unordered_map<string, vector<int>> &dpMap) {vector<int> result;int size = input.size();for (int i = 0; i < size; i++) {char cur = input[i];if (cur == '+' || cur == '-' || cur == '*') {// Split input string into two parts and solve them recursivelyvector<int> result1, result2;string substr = input.substr(0, i);// check if dpMap has the result for substrif (dpMap.find(substr) != dpMap.end())result1 = dpMap[substr];//没有重复的elseresult1 = computeWithDP(substr, dpMap);//有重复的,继续递归下去substr = input.substr(i + 1);if (dpMap.find(substr) != dpMap.end())result2 = dpMap[substr];elseresult2 = computeWithDP(substr, dpMap);for (auto n1 : result1) {for (auto n2 : result2) {if (cur == '+')result.push_back(n1 + n2);else if (cur == '-')result.push_back(n1 - n2);elseresult.push_back(n1 * n2);}}}}// if the input string contains only numberif (result.empty())result.push_back(atoi(input.c_str()));// save to dpMapdpMap[input] = result;return result;}
};

这篇关于Leetcode——241. Different Ways to Add Parentheses的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/669091

相关文章

Nginx指令add_header和proxy_set_header的区别及说明

《Nginx指令add_header和proxy_set_header的区别及说明》:本文主要介绍Nginx指令add_header和proxy_set_header的区别及说明,具有很好的参考价... 目录Nginx指令add_header和proxy_set_header区别如何理解反向代理?proxy

在Dockerfile中copy和add的区别及说明

《在Dockerfile中copy和add的区别及说明》COPY和ADD都是Dockerfile中用于文件复制的命令,但COPY仅用于本地文件或目录的复制,不支持自动解压缩;而ADD除了复制本地文件或... 目录在dockerfile中,copy 和 add有什么区别?COPY 命令ADD 命令总结在Doc

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

【JavaScript】LeetCode:16-20

文章目录 16 无重复字符的最长字串17 找到字符串中所有字母异位词18 和为K的子数组19 滑动窗口最大值20 最小覆盖字串 16 无重复字符的最长字串 滑动窗口 + 哈希表这里用哈希集合Set()实现。左指针i,右指针j,从头遍历数组,若j指针指向的元素不在set中,则加入该元素,否则更新结果res,删除集合中i指针指向的元素,进入下一轮循环。 /*** @param

LeetCode:64. 最大正方形 动态规划 时间复杂度O(nm)

64. 最大正方形 题目链接 题目描述 给定一个由 0 和 1 组成的二维矩阵,找出只包含 1 的最大正方形,并返回其面积。 示例1: 输入: 1 0 1 0 01 0 1 1 11 1 1 1 11 0 0 1 0输出: 4 示例2: 输入: 0 1 1 0 01 1 1 1 11 1 1 1 11 1 1 1 1输出: 9 解题思路 这道题的思路是使用动态规划