We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2f02f commit c297b60Copy full SHA for c297b60
1 file changed
data_structure/stack_queue.md
@@ -83,8 +83,9 @@ func (this *MinStack) GetMin() int {
83
84
[evaluate-reverse-polish-notation](https://leetcode-cn.com/problems/evaluate-reverse-polish-notation/)
85
86
-> **波兰表达式计算** > **输入:** ["2", "1", "+", "3", "*"] > **输出:** 9
87
-> **解释:** ((2 + 1) \* 3) = 9
+> **波兰表达式计算** > **输入:** `["2", "1", "+", "3", "*"]` > **输出:** 9
+>
88
+> **解释:** `((2 + 1) * 3) = 9`
89
90
思路:通过栈保存原来的元素,遇到表达式弹出运算,再推入结果,重复这个过程
91
0 commit comments