Uses of Class
algoanim.primitives.VisualStack

Packages that use VisualStack
algoanim.primitives   
 

Uses of VisualStack in algoanim.primitives
 

Subclasses of VisualStack in algoanim.primitives
 class ArrayBasedStack<T>
          Represents a stack which has an usual LIFO-functionality and will be visualized using an array.
The stored objects are of the generic data type T, so it is generally possible to use ArrayBasedStack with any objects.
 class ConceptualStack<T>
          Represents a stack which has an usual LIFO-functionality and will be visualized as a conceptual stack.
The stored objects are of the generic data type T, so it is generally possible to use ConceptualStack with any objects.
 class ListBasedStack<T>
          Represents a stack which has an usual LIFO-functionality and will be visualized using a linked list.
The stored objects are of the generic data type T, so it is generally possible to use ListBasedStack with any objects.