会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
核桃圆
博客园
首页
联系
订阅
管理
2019年10月13日
编程题:利用链表实现栈
摘要: class Node{ E data; Node next = null; public Node(E data){ this.data = data; } } class ListStack{ Node top = null; public boolean empty(){ return top == null;...
阅读全文
posted @ 2019-10-13 21:12 何浩源
阅读(288)
评论(0)
推荐(0)
编辑
公告
//一下两个链接最好自己保存下来,再上传到自己的博客园的“文件”选项中