冷静铃铛

文章
8
资源
0
加入时间
2年10月24天

Java实现循环队列

import java.io.*;public class QueueArray {       Object[] a; //对象数组,队列最多存储a.length-1个对象       int front;  //队首下标       int rear;   //队尾下标       public QueueArray(){           this(10); //调用其它构造方法