摘要: 链队列实际上就是单链表,只是规定了删除在队头进行,添加在队尾进行。链队列代码结构package list.queue; public interface Queuable; public class QueueNode; public class LinkedQueue;package list; public class TestLinkedQueue;链队列公共接口 1 package list.queue; 2 3 public interface Queuable { 4 5 public int length(); 6 7 public boolean ... 阅读全文
posted @ 2013-10-07 22:04 一夏鸣蝉 阅读(327) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2013-10-07 18:49 一夏鸣蝉 阅读(17) 评论(0) 推荐(0) 编辑