1、Evaluate Reverse Polish Notation,后缀运算符表达式计算,用栈存储操作数和中间计算结果,每次取操作数时弹栈,计算完成将结果压栈即可。 2、DP类型题: Minimum Path Sum