Package components.set


package components.set
Provides the Set family interfaces and implementing classes.
  • Class
    Description
    Set<T>
    SetKernel enhanced with secondary methods.
    Set represented as a java.util.Set with implementations of primary methods.
    Set2<T>
    Set represented as a Queue of elements with implementations of primary methods.
    Set3<T>
    Set represented as a BinaryTree (maintained as a binary search tree) of elements with implementations of primary methods.
    Set4<T>
    Set represented as a hash table using Sets for the buckets, with implementations of primary methods.
    Set kernel component with primary methods.
    Layered implementations of secondary methods for Set.