241. Different Ways to Add Parentheses
problem 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:
Example 2:
algorithm thought
这里最简答的方法就是回溯法,因为可以随意加括号,有很多不确定性。使用回溯法,在每个能加括号的地方,进行回溯。但是回溯法时间复杂度太高,往往可以用备忘录的方式,消除重复的回溯。所以这里用一个map来保存每次运行后的结果。进入函数的时候,首先检查是否在map中已经保存了,如果保存了,就直接返回。
在函数中,处理方式就是,找到每个操作符,对操作符左右分别进行递归处理。 最后将结果保存在map中即可
code
algorithm analysis
回溯法时间复杂度是O(2^n)的时间复杂度,这里加入了map的方式,会快一点。
Last updated