We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7502f12 commit 4e79e05Copy full SHA for 4e79e05
Recursion/241.Different-Ways-to-Add-Parentheses/Readme.md
@@ -1,6 +1,6 @@
1
### 241.Different-Ways-to-Add-Parentheses
2
3
-此题只要想到,任何多项式运算最终可以化简为最后的双目运算.只要确定这个双目运算符的位置,其前后两端用递归处理就行了.
+此题只要想到,任何多项式运算最终可以化简为最后的双目运算。只要遍历这个双目运算符的位置,其将运算符前后两部分都用递归处理,然后这两部分的结果再两两组合即可.
4
5
6
-[Leetcode Link](https://leetcode.com/problems/different-ways-to-add-parentheses)
+[Leetcode Link](https://leetcode.com/problems/different-ways-to-add-parentheses)
0 commit comments