Class LongOpenCustomHashSet

All Implemented Interfaces:
Hash, LongCollection, LongIterable, LongSet, Serializable, Cloneable, Iterable<Long>, Collection<Long>, Set<Long>

public class LongOpenCustomHashSet extends AbstractLongSet implements Serializable, Cloneable, Hash
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy is specified at creation time.

Instances of this class use a hash table to represent a set. The table is filled up to a specified load factor, and then doubled in size to accommodate new entries. If the table is emptied below one fourth of the load factor, it is halved in size; however, the table is never reduced to a size smaller than that at creation time: this approach makes it possible to create sets with a large capacity in which insertions and deletions do not cause immediately rehashing. Moreover, halving is not performed when deleting entries from an iterator, as it would interfere with the iteration process.

Note that clear() does not modify the hash table size. Rather, a family of trimming methods lets you control the size of the table; this is particularly useful if you reuse instances of this class.

See Also:
  • Constructor Details

    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(int expected, float f, LongHash.Strategy strategy)
      Creates a new hash set.

      The actual table size will be the least power of two greater than expected/f.

      Parameters:
      expected - the expected number of elements in the hash set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(int expected, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
      Parameters:
      expected - the expected number of elements in the hash set.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(LongHash.Strategy strategy)
      Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
      Parameters:
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(Collection<? extends Long> c, float f, LongHash.Strategy strategy)
      Creates a new hash set copying a given collection.
      Parameters:
      c - a Collection to be copied into the new hash set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(Collection<? extends Long> c, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
      Parameters:
      c - a Collection to be copied into the new hash set.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(LongCollection c, float f, LongHash.Strategy strategy)
      Creates a new hash set copying a given type-specific collection.
      Parameters:
      c - a type-specific collection to be copied into the new hash set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(LongCollection c, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
      Parameters:
      c - a type-specific collection to be copied into the new hash set.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(LongIterator i, float f, LongHash.Strategy strategy)
      Creates a new hash set using elements provided by a type-specific iterator.
      Parameters:
      i - a type-specific iterator whose elements will fill the set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(LongIterator i, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
      Parameters:
      i - a type-specific iterator whose elements will fill the set.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(Iterator<?> i, float f, LongHash.Strategy strategy)
      Creates a new hash set using elements provided by an iterator.
      Parameters:
      i - an iterator whose elements will fill the set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(Iterator<?> i, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
      Parameters:
      i - an iterator whose elements will fill the set.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(long[] a, int offset, int length, float f, LongHash.Strategy strategy)
      Creates a new hash set and fills it with the elements of a given array.
      Parameters:
      a - an array whose elements will be used to fill the set.
      offset - the first element to use.
      length - the number of elements to use.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(long[] a, int offset, int length, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
      Parameters:
      a - an array whose elements will be used to fill the set.
      offset - the first element to use.
      length - the number of elements to use.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(long[] a, float f, LongHash.Strategy strategy)
      Creates a new hash set copying the elements of an array.
      Parameters:
      a - an array to be copied into the new hash set.
      f - the load factor.
      strategy - the strategy.
    • LongOpenCustomHashSet

      public LongOpenCustomHashSet(long[] a, LongHash.Strategy strategy)
      Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
      Parameters:
      a - an array to be copied into the new hash set.
      strategy - the strategy.
  • Method Details