摘要: 第十天 今天开始学习stack相关 232. 用栈实现队列 class MyQueue { Stack<Integer> in; Stack<Integer> out; public MyQueue() { in = new Stack<>(); out = new Stack<>(); } pub 阅读全文
posted @ 2022-10-21 11:24 小猫Soda 阅读(32) 评论(0) 推荐(0)