Package edu.trinity.cs.bmassing.adt1

Interface Summary
SimpleQueue<E> Interface for queues.
SimpleStack<E> Interface for stacks.
 

Class Summary
FixedArrayQueue<E> Class for fixed-size array-based queues.
FixedArrayStack<E> Class for fixed-size array-based stacks.
 

Exception Summary
QueueEmptyException Class for exceptions to be generated by Queue methods when an attempt is made to remove something from an empty queue.
QueueFullException Class for exceptions to be generated by Queue methods when an attempt is made to put something into a full queue.
StackEmptyException Class for exceptions to be generated by Stack methods when an attempt is made to remove something from an empty stack.
StackFullException Class for exceptions to be generated by Stack methods when an attempt is made to put something into a full stack.