Package components.map


package components.map
Provides the Map family interfaces and implementing classes.
  • Class
    Description
    Map<K,V>
    MapKernel enhanced with secondary methods.
    A map entry (key-value pair).
    Map1L<K,V>
    Map represented as a java.util.Map with implementations of primary methods.
    Map2<K,V>
    Map represented as a Queue of pairs with implementations of primary methods.
    Map3<K,V>
    Map represented as a BinaryTree (maintained as a binary search tree) of pairs with implementations of primary methods.
    Map4<K,V>
    Map represented as a hash table using Maps for the buckets, with implementations of primary methods.
    Map kernel component with primary methods.
    Layered implementations of secondary methods for Map.
    Straightforward implementation of Pair interface.