Kuris
Kuris
全部文章
题解
面试必刷TOP101(2)
归档
标签
去牛客网
登录
/
注册
Kuris的博客
全部文章
/ 题解
(共1篇)
题解 | #用两个栈实现队列#
一个栈专门用于入队,一个栈专门用于出队 import java.util.Stack; public class Solution { Stack<Integer> stack1 = new Stack<Integer>(); Stack<Integ...
Java
栈
队列
2022-06-04
0
284