摘要: JZ9 用两个栈实现队列 1 /* 模拟入队 */ 2 public class JZ9_1 3 { 4 public static Stack<Integer> stack1 = new Stack<Integer>(); 5 public static Stack<Integer> stack2 阅读全文
posted @ 2023-09-17 20:48 Vivid-BinGo 阅读(1) 评论(0) 推荐(0) 编辑