摘要: 题解 class CQueue { Stack<Integer> a, b; public CQueue() { a = new Stack<Integer>(); b = new Stack<Integer>(); } public void appendTail(int value) { a.p 阅读全文
posted @ 2021-04-07 08:43 Lngstart 阅读(23) 评论(0) 推荐(0)