Uses of Interface
net.datastructures.Stack

Uses of Stack in net.datastructures
 

Classes in net.datastructures that implement Stack
 class ArrayStack<E>
          Implementation of the stack ADT using a fixed-length array.
 class NodeStack<E>
          Implementation of the stack ADT by means of a singly linked list.
 

Methods in net.datastructures with parameters of type Stack
static void NodeStack.status(Stack S, java.lang.String op, java.lang.Object element)
          Prints information about an operation and the stack.