Package com.zybooks.dsaj.list


package com.zybooks.dsaj.list
Code from the chapter "List and Iterator ADTs"
  • Class
    Description
    Realization of a list by means of a dynamic array.
    A list of elements, ordered from most frequently to least frequently accessed.
     
    A list of elements, ordered from most recently to least recently accessed.
    Provides an insertion sort implementation for a PositionalList.
     
    Implementation of a positional list stored as a doubly linked list.
    List<E>
    A simplified version of the java.util.List interface.
    An interface for positional lists.