2016年11月21日

linkedLoop

摘要: public class linkQueue { private class Node{ E e; Node next; public Node(){} public Node(E e,Node next){ this.e=e; this.next=... 阅读全文

posted @ 2016-11-21 19:18 猫儿爹 阅读(150) 评论(0) 推荐(0) 编辑

loopqueue

摘要: import java.util.Arrays; public class loopQueue { public Object[] data=null; private int maxsize; private int rear;//队尾 private int front;// private int size=0; pub... 阅读全文

posted @ 2016-11-21 11:06 猫儿爹 阅读(242) 评论(0) 推荐(0) 编辑

导航