Uses of Class
algoanim.primitives.VisualQueue

Packages that use VisualQueue
algoanim.primitives   
 

Uses of VisualQueue in algoanim.primitives
 

Subclasses of VisualQueue in algoanim.primitives
 class ArrayBasedQueue<T>
          Represents a queue which has an usual FIFO-functionality and will be visualized as an array.
The stored objects are of the generic data type T, so it is generally possible to use ArrayBasedQueue with any objects.
 class ConceptualQueue<T>
          Represents a queue which has an usual FIFO-functionality and will be visualized as a conceptual queue.
The stored objects are of the generic data type T, so it is generally possible to use ConceptualQueue with any objects.
 class ListBasedQueue<T>
          Represents a queue which has an usual FIFO-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 ListBasedQueue with any objects.