摘要: 栈和队列 用栈实现队列 class MyQueue { // 定义全局变量 Stack<Integer> stackIn; Stack<Integer> stackOut; public MyQueue() { // 通过使用两个栈来模拟队列 stackIn = new Stack<>(); // 阅读全文
posted @ 2024-11-27 17:40 墨羽寻觅 阅读(9) 评论(0) 推荐(0) 编辑