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. 分治法
这道题比较直观的是使用分治法分别解决符号的左边和右边的计算结果。其中需要单独考虑的是当字符串中不存在符号时,应该直接返回该字符串的表示的数值。其中,也可以在开始实现使用 isdigit()
判断。具体实现过程如下:
1 | class Solution: |