Preallocable, ShortCollection, ShortContainer, ShortLookupContainer, ShortSet, java.lang.Cloneable, java.lang.Iterable<ShortCursor>ShortScatterSet@Generated(date="2018-05-21T12:24:05+0200", value="KTypeHashSet.java") public class ShortHashSet extends java.lang.Object implements ShortLookupContainer, ShortSet, Preallocable, java.lang.Cloneable
shorts, implemented using using open addressing
with linear probing for collision resolution.
Note: read about important differences between hash and scatter sets.
ShortScatterSet,
HPPC interfaces diagram| Modifier and Type | Class | Description |
|---|---|---|
protected class |
ShortHashSet.EntryIterator |
An iterator implementation for
iterator(). |
| Modifier and Type | Field | Description |
|---|---|---|
protected int |
assigned |
The number of stored keys (assigned key slots), excluding the special
"empty" key, if any.
|
protected boolean |
hasEmptyKey |
Special treatment for the "empty slot" key marker.
|
protected int |
keyMixer |
We perturb hash values with a container-unique
seed to avoid problems with nearly-sorted-by-hash
values on iterations.
|
short[] |
keys |
The hash array holding keys.
|
protected double |
loadFactor |
The load factor for
keys. |
protected int |
mask |
Mask for slot scans in
keys. |
protected HashOrderMixingStrategy |
orderMixer |
Per-instance hash order mixing strategy.
|
protected int |
resizeAt |
| Constructor | Description |
|---|---|
ShortHashSet() |
New instance with sane defaults.
|
ShortHashSet(int expectedElements) |
New instance with sane defaults.
|
ShortHashSet(int expectedElements,
double loadFactor) |
New instance with sane defaults.
|
ShortHashSet(int expectedElements,
double loadFactor,
HashOrderMixingStrategy orderMixer) |
New instance with the provided defaults.
|
ShortHashSet(ShortContainer container) |
New instance copying elements from another
ShortContainer. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
add(short key) |
Adds
k to the set. |
int |
addAll(short... elements) |
Adds all elements from the given list (vararg) to this set.
|
int |
addAll(ShortContainer container) |
Adds all elements from the given
ShortContainer to this set. |
int |
addAll(java.lang.Iterable<? extends ShortCursor> iterable) |
Adds all elements from the given iterable to this set.
|
protected void |
allocateBuffers(int arraySize) |
Allocate new internal buffers.
|
protected void |
allocateThenInsertThenRehash(int slot,
short pendingKey) |
This method is invoked when there is a new key to be inserted into
the buffer but there is not enough empty slots to do so.
|
void |
clear() |
Removes all elements from this collection.
|
ShortHashSet |
clone() |
|
boolean |
contains(short key) |
Lookup a given element in the container.
|
void |
ensureCapacity(int expectedElements) |
Ensure this container can hold at least the
given number of elements without resizing its buffers.
|
boolean |
equals(java.lang.Object obj) |
|
<T extends ShortProcedure> |
forEach(T procedure) |
Applies a
procedure to all container elements. |
static ShortHashSet |
from(short... elements) |
Create a set from a variable number of arguments or an array of
short. |
int |
hashCode() |
|
protected int |
hashKey(short key) |
Returns a hash code for the given key.
|
boolean |
indexExists(int index) |
|
short |
indexGet(int index) |
Returns the exact value of the existing key.
|
void |
indexInsert(int index,
short key) |
Inserts a key for an index that is not present in the set.
|
int |
indexOf(short key) |
Returns a logical "index" of a given key that can be used to speed up
follow-up logic in certain scenarios (conditional logic).
|
short |
indexReplace(int index,
short equivalentKey) |
Replaces the existing equivalent key with the given one and returns any previous value
stored for that key.
|
boolean |
isEmpty() |
Shortcut for
size() == 0. |
java.util.Iterator<ShortCursor> |
iterator() |
Returns an iterator to a cursor traversing the collection.
|
protected void |
rehash(short[] fromKeys) |
Rehash from old buffers to new buffers.
|
void |
release() |
Removes all elements from the collection and additionally releases any
internal buffers.
|
boolean |
remove(short key) |
An alias for the (preferred)
removeAll(short). |
int |
removeAll(ShortLookupContainer c) |
Default implementation uses a predicate for removal.
|
int |
removeAll(short key) |
Removes all occurrences of
e from this collection. |
int |
removeAll(ShortPredicate predicate) |
Removes all elements in this collection for which the given predicate
returns
true. |
int |
retainAll(ShortPredicate predicate) |
Default implementation redirects to
ShortCollection.removeAll(ShortPredicate) and
negates the predicate. |
int |
retainAll(ShortLookupContainer c) |
Default implementation uses a predicate for retaining.
|
protected void |
shiftConflictingKeys(int gapSlot) |
Shift all the slot-conflicting keys allocated to (and including)
slot. |
int |
size() |
Return the current number of elements in this container.
|
short[] |
toArray() |
Default implementation of copying to an array.
|
java.lang.String |
toString() |
Convert the contents of this container to a human-friendly string.
|
protected double |
verifyLoadFactor(double loadFactor) |
Validate load factor range and return it.
|
java.lang.String |
visualizeKeyDistribution(int characters) |
Visually depict the distribution of keys.
|
finalize, getClass, notify, notifyAll, wait, wait, waitremoveAll, retainAll, retainAllpublic short[] keys
protected int assigned
size(),
hasEmptyKeyprotected int mask
keys.protected int keyMixer
hashKey(short),
"http://issues.carrot2.org/browse/HPPC-80",
"http://issues.carrot2.org/browse/HPPC-103"protected int resizeAt
protected boolean hasEmptyKey
protected double loadFactor
keys.protected HashOrderMixingStrategy orderMixer
keyMixerpublic ShortHashSet()
public ShortHashSet(int expectedElements)
public ShortHashSet(int expectedElements,
double loadFactor)
public ShortHashSet(int expectedElements,
double loadFactor,
HashOrderMixingStrategy orderMixer)
expectedElements - The expected number of elements guaranteed not to cause a rehash (inclusive).loadFactor - The load factor for internal buffers. Insane load factors (zero, full capacity)
are rejected by verifyLoadFactor(double).orderMixer - Hash key order mixing strategy. See HashOrderMixing for predefined
implementations. Use constant mixers only if you understand the potential
consequences.public ShortHashSet(ShortContainer container)
ShortContainer.public boolean add(short key)
k to the set.public final int addAll(short... elements)
public int addAll(ShortContainer container)
ShortContainer to this set.public int addAll(java.lang.Iterable<? extends ShortCursor> iterable)
public short[] toArray()
toArray in interface ShortContainerpublic boolean remove(short key)
removeAll(short).public int removeAll(short key)
e from this collection.removeAll in interface ShortCollectionkey - Element to be removed from this collection, if present.public int removeAll(ShortPredicate predicate)
true.removeAll in interface ShortCollectionpublic boolean contains(short key)
contains in interface ShortContainercontains in interface ShortLookupContainertrue if this container has an element equal to
e.public void clear()
clear in interface ShortCollectionShortCollection.release()public void release()
ShortCollection.clear() should be a better alternative since it'll avoid
reallocation.release in interface ShortCollectionShortCollection.clear()public boolean isEmpty()
size() == 0.isEmpty in interface ShortContainerpublic void ensureCapacity(int expectedElements)
ensureCapacity in interface PreallocableexpectedElements - The total number of elements, inclusive.public int size()
O(n) time, although
implementing classes should try to maintain the current size and return in
constant time.size in interface ShortContainerpublic int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic ShortHashSet clone()
clone in class java.lang.Objectpublic java.util.Iterator<ShortCursor> iterator()
The iterator is implemented as a cursor and it returns the same cursor
instance on every call to Iterator.next() (to avoid boxing of
primitive types). To read the current list's value (or index in the list)
use the cursor's public fields. An example is shown below.
for (ShortCursor<short> c : container) {
System.out.println("index=" + c.index + " value=" + c.value);
}
iterator in interface java.lang.Iterable<ShortCursor>iterator in interface ShortContainerpublic <T extends ShortProcedure> T forEach(T procedure)
procedure to all container elements. Returns the
argument (any subclass of ShortProcedure. This lets the caller to
call methods of the argument by chaining the call (even if the argument is
an anonymous type) to retrieve computed values, for example (IntContainer):
int count = container.forEach(new IntProcedure() {
int count; // this is a field declaration in an anonymous class.
public void apply(int value) {
count++;
}
}).count;
forEach in interface ShortContainerpublic <T extends ShortPredicate> T forEach(T predicate)
predicate to container elements as long, as the
predicate returns true. The iteration is interrupted
otherwise.forEach in interface ShortContainerpublic static ShortHashSet from(short... elements)
short. The elements are copied from the argument to the
internal buffer.protected int hashKey(short key)
keyMixer
to differentiate hash order of keys between hash containers. Helps
alleviate problems resulting from linear conflict resolution in open
addressing.
The output from this function should evenly distribute keys across the
entire integer range.public int indexOf(short key)
key - The key to locate in the set.indexExists(int),
indexGet(int),
indexInsert(int, short),
indexReplace(int, short)public boolean indexExists(int index)
index - The index of a given key, as returned from indexOf(short).true if the index corresponds to an existing key
or false otherwise. This is equivalent to checking whether the index is
a positive value (existing keys) or a negative value (non-existing keys).indexOf(short)public short indexGet(int index)
index - The index of an existing key.java.lang.AssertionError - If assertions are enabled and the index does
not correspond to an existing key.indexOf(short)public short indexReplace(int index,
short equivalentKey)
index - The index of an existing key.equivalentKey - The key to put in the set as a replacement. Must be equivalent to
the key currently stored at the provided index.java.lang.AssertionError - If assertions are enabled and the index does
not correspond to an existing key.indexOf(short)public void indexInsert(int index,
short key)
index - The index of a previously non-existing key, as returned from
indexOf(short).java.lang.AssertionError - If assertions are enabled and the index does
not correspond to an existing key.indexOf(short)public java.lang.String visualizeKeyDistribution(int characters)
ShortSetvisualizeKeyDistribution in interface ShortSetcharacters - The number of characters to "squeeze" the entire buffer into.protected double verifyLoadFactor(double loadFactor)
protected void rehash(short[] fromKeys)
protected void allocateBuffers(int arraySize)
protected void allocateThenInsertThenRehash(int slot,
short pendingKey)
protected void shiftConflictingKeys(int gapSlot)
slot.public int removeAll(ShortLookupContainer c)
removeAll in interface ShortCollectionpublic int retainAll(ShortLookupContainer c)
retainAll in interface ShortCollectionpublic int retainAll(ShortPredicate predicate)
ShortCollection.removeAll(ShortPredicate) and
negates the predicate.retainAll in interface ShortCollectionpublic java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2018 Carrot Search s.c.. All Rights Reserved.