摘要: /** * 使用链表实现队列 * Create by Administrator * 2018/6/19 0019 * 下午 4:37 **/ public class Link { public long dData; public Link next; public Link(long d){ this.dData = d; } ... 阅读全文
posted @ 2018-06-19 17:18 花儿为何那样红 阅读(194) 评论(0) 推荐(0) 编辑
摘要: /** * 使用链表实现队列 * Create by Administrator * 2018/6/19 0019 * 下午 4:37 **/ public class Link { public long dData; public Link next; public Link(long d){ this.dData = d; } ... 阅读全文
posted @ 2018-06-19 16:56 花儿为何那样红 阅读(141) 评论(0) 推荐(0) 编辑