会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
墨韵流年
首页
新随笔
联系
管理
2024年11月27日
栈和队列
摘要: 栈和队列 用栈实现队列 class MyQueue { // 定义全局变量 Stack<Integer> stackIn; Stack<Integer> stackOut; public MyQueue() { // 通过使用两个栈来模拟队列 stackIn = new Stack<>(); //
阅读全文
posted @ 2024-11-27 17:40 墨羽寻觅
阅读(9)
评论(0)
推荐(0)
编辑
公告