摘要: Leetcode150 逆波兰表达式求值 题目链接 栈 class Solution { public int evalRPN(String[] tokens) { Deque<Integer> stack = new LinkedList(); for (String s : tokens) { 阅读全文
posted @ 2024-06-18 23:27 lorange 阅读(23) 评论(0) 推荐(0)