摘要: "LeetCode 150 Evaluate Reverse Polish Notation" 后缀表达式,利用栈就可以轻松计算 c++ class Solution { public: int stack[10005]; int pos=0; int evalRPN(vector& tokens) 阅读全文
posted @ 2019-03-12 08:32 Shendu.CC 阅读(96) 评论(0) 推荐(0) 编辑