主类 package DataStructures;public class ArrayStack { private Object[]theArray;private int topOfStack;static final int DEFAULT_CAPACITY=10;Construct the stack.*/public ArrayStack(){ this(DEFAULT_CAPACITY);...
package DataStructures;public class QueueArray { static final int DEFAULT_CAPACITY=10;private Object[]theArray;private int currentSize;private int front;private int back;Construct the queue.*/public QueueArray(){ this...