Preallocable, ShortObjectAssociativeContainer<VType>, ShortObjectMap<VType>, java.lang.Cloneable, java.lang.Iterable<VType>ShortObjectScatterMap@Generated(date="2018-05-21T12:24:06+0200", value="KTypeVTypeHashMap.java") public class ShortObjectHashMap<VType> extends java.lang.Object implements ShortObjectMap<VType>, Preallocable, java.lang.Cloneable
short to Object, implemented using open
addressing with linear probing for collision resolution.
Note: read about important differences between hash and scatter sets.
ShortObjectScatterMap,
HPPC interfaces diagram| Modifier and Type | Class | Description |
|---|---|---|
class |
ShortObjectHashMap.KeysContainer |
A view of the keys inside this hash map.
|
| Modifier and Type | Field | Description |
|---|---|---|
protected int |
assigned |
The number of stored keys (assigned key slots), excluding the special
"empty" key, if any (use
size() instead). |
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 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 |
|
java.lang.Object[] |
values |
The array holding values.
|
| Constructor | Description |
|---|---|
ShortObjectHashMap() |
New instance with sane defaults.
|
ShortObjectHashMap(int expectedElements) |
New instance with sane defaults.
|
ShortObjectHashMap(int expectedElements,
double loadFactor) |
New instance with sane defaults.
|
ShortObjectHashMap(int expectedElements,
double loadFactor,
HashOrderMixingStrategy orderMixer) |
New instance with the provided defaults.
|
ShortObjectHashMap(ShortObjectAssociativeContainer<? extends VType> container) |
Create a hash map from all key-value pairs of another container.
|
| Modifier and Type | Method | Description |
|---|---|---|
protected void |
allocateBuffers(int arraySize) |
Allocate new internal buffers.
|
protected void |
allocateThenInsertThenRehash(int slot,
short pendingKey,
VType pendingValue) |
This method is invoked when there is a new key/ value pair to be inserted into
the buffers but there is not enough empty slots to do so.
|
void |
clear() |
Clear all keys and values in the container.
|
ShortObjectHashMap<VType> |
clone() |
|
boolean |
containsKey(short key) |
Returns
true if this container has an association to a value
for the given key. |
void |
ensureCapacity(int expectedElements) |
Ensure this container can hold at least the
given number of keys (entries) without resizing its buffers.
|
protected boolean |
equalElements(ShortObjectHashMap<?> other) |
Return true if all keys of some other container exist in this container.
|
boolean |
equals(java.lang.Object obj) |
Compares the specified object with this set for equality.
|
<T extends ShortObjectProcedure<? super VType>> |
forEach(T procedure) |
Applies a given procedure to all keys-value pairs in this container.
|
static <VType> ShortObjectHashMap<VType> |
from(short[] keys,
VType[] values) |
Creates a hash map from two index-aligned arrays of key-value pairs.
|
VType |
get(short key) |
|
VType |
getOrDefault(short key,
VType defaultValue) |
|
int |
hashCode() |
|
protected int |
hashKey(short key) |
Returns a hash code for the given key.
|
boolean |
indexExists(int index) |
|
VType |
indexGet(int index) |
Returns the value associated with an existing key.
|
void |
indexInsert(int index,
short key,
VType value) |
Inserts a key-value pair for a key that is not present in the map.
|
int |
indexOf(short key) |
Returns a logical "index" of a given key that can be used to speed up
follow-up value setters or getters in certain scenarios (conditional
logic).
|
VType |
indexReplace(int index,
VType newValue) |
Replaces the value associated with an existing key and returns any previous
value stored for that key.
|
boolean |
isEmpty() |
|
java.util.Iterator<ShortObjectCursor<VType>> |
iterator() |
Returns a cursor over the entries (key-value pairs) in this map.
|
ShortObjectHashMap.KeysContainer |
keys() |
Returns a specialized view of the keys of this associated container.
|
VType |
put(short key,
VType value) |
Place a given key and value in the container.
|
int |
putAll(ShortObjectAssociativeContainer<? extends VType> container) |
Puts all keys from another container to this map, replacing the values of
existing keys, if such keys are present.
|
int |
putAll(java.lang.Iterable<? extends ShortObjectCursor<? extends VType>> iterable) |
Puts all key/value pairs from a given iterable into this map.
|
boolean |
putIfAbsent(short key,
VType value) |
Trove-inspired API method.
|
protected void |
rehash(short[] fromKeys,
VType[] fromValues) |
Rehash from old buffers to new buffers.
|
void |
release() |
Removes all elements from the collection and additionally releases any
internal buffers.
|
VType |
remove(short key) |
Remove all values at the given key.
|
int |
removeAll(ShortObjectPredicate<? super VType> predicate) |
Removes all keys (and associated values) for which the predicate returns
true. |
int |
removeAll(ShortPredicate predicate) |
Removes all keys (and associated values) for which the predicate returns
true. |
int |
removeAll(ShortContainer other) |
Removes all keys (and associated values) present in a given container.
|
protected void |
shiftConflictingKeys(int gapSlot) |
Shift all the slot-conflicting keys and values allocated to
(and including)
slot. |
int |
size() |
|
java.lang.String |
toString() |
Convert the contents of this map to a human-friendly string.
|
ObjectCollection<VType> |
values() |
Returns a container view of all values present in this container.
|
protected double |
verifyLoadFactor(double loadFactor) |
Validate load factor range and return it.
|
java.lang.String |
visualizeKeyDistribution(int characters) |
Visually depict the distribution of keys.
|
public short[] keys
public java.lang.Object[] values
protected int keyMixer
hashKey(short),
"http://issues.carrot2.org/browse/HPPC-80",
"http://issues.carrot2.org/browse/HPPC-103"protected int assigned
size() instead).size()protected int mask
keys.protected int resizeAt
protected boolean hasEmptyKey
protected double loadFactor
keys.protected HashOrderMixingStrategy orderMixer
keyMixerpublic ShortObjectHashMap()
public ShortObjectHashMap(int expectedElements)
expectedElements - The expected number of elements guaranteed not to cause buffer
expansion (inclusive).public ShortObjectHashMap(int expectedElements,
double loadFactor)
expectedElements - The expected number of elements guaranteed not to cause buffer
expansion (inclusive).loadFactor - The load factor for internal buffers. Insane load factors (zero, full capacity)
are rejected by verifyLoadFactor(double).public ShortObjectHashMap(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 ShortObjectHashMap(ShortObjectAssociativeContainer<? extends VType> container)
public VType put(short key, VType value)
put in interface ShortObjectMap<VType>public int putAll(ShortObjectAssociativeContainer<? extends VType> container)
putAll in interface ShortObjectMap<VType>public int putAll(java.lang.Iterable<? extends ShortObjectCursor<? extends VType>> iterable)
putAll in interface ShortObjectMap<VType>public boolean putIfAbsent(short key,
VType value)
if (!map.containsKey(key)) map.put(value);
key - The key of the value to check.value - The value to put if key does not exist.true if key did not exist and value
was placed in the map.public VType remove(short key)
remove in interface ShortObjectMap<VType>public int removeAll(ShortContainer other)
keys().removeAll(container)but with no additional overhead.
removeAll in interface ShortObjectAssociativeContainer<VType>public int removeAll(ShortObjectPredicate<? super VType> predicate)
true.removeAll in interface ShortObjectAssociativeContainer<VType>public int removeAll(ShortPredicate predicate)
true.removeAll in interface ShortObjectAssociativeContainer<VType>public VType get(short key)
get in interface ShortObjectMap<VType>null.public VType getOrDefault(short key, VType defaultValue)
getOrDefault in interface ShortObjectMap<VType>public boolean containsKey(short key)
true if this container has an association to a value
for the given key.containsKey in interface ShortObjectAssociativeContainer<VType>public int indexOf(short key)
indexOf in interface ShortObjectMap<VType>key - The key to locate in the map.ShortObjectMap.indexExists(int),
ShortObjectMap.indexGet(int),
ShortObjectMap.indexInsert(int, short, VType),
ShortObjectMap.indexReplace(int, VType)public boolean indexExists(int index)
indexExists in interface ShortObjectMap<VType>index - The index of a given key, as returned from ShortObjectMap.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).ShortObjectMap.indexOf(short)public VType indexGet(int index)
indexGet in interface ShortObjectMap<VType>index - The index of an existing key.ShortObjectMap.indexOf(short)public VType indexReplace(int index, VType newValue)
indexReplace in interface ShortObjectMap<VType>index - The index of an existing key.ShortObjectMap.indexOf(short)public void indexInsert(int index,
short key,
VType value)
indexInsert in interface ShortObjectMap<VType>index - The index of a previously non-existing key, as returned from
ShortObjectMap.indexOf(short).ShortObjectMap.indexOf(short)public void clear()
clear in interface ShortObjectMap<VType>ShortObjectMap.release()public void release()
ShortObjectMap.clear() should be a better alternative since it'll avoid
reallocation.release in interface ShortObjectMap<VType>ShortObjectMap.clear()public int size()
size in interface ShortObjectAssociativeContainer<VType>public boolean isEmpty()
isEmpty in interface ShortObjectAssociativeContainer<VType>true if this hash map contains no assigned
keys.public int hashCode()
hashCode in interface ShortObjectMap<VType>hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
ShortObjectMap and both objects contains exactly the same key-value
pairs.equals in interface ShortObjectMap<VType>equals in class java.lang.Objectprotected boolean equalElements(ShortObjectHashMap<?> other)
Object.equals(Object) method.public void ensureCapacity(int expectedElements)
ensureCapacity in interface PreallocableexpectedElements - The total number of keys, inclusive.public java.util.Iterator<ShortObjectCursor<VType>> iterator()
Iterator.next(). To read the current
key and value use the cursor's public fields. An example is shown below.
for (IntShortCursor c : intShortMap) {
System.out.println("index=" + c.index + " key=" + c.key + " value=" + c.value);
}
The index field inside the cursor gives the internal index
inside the container's implementation. The interpretation of this index
depends on to the container.
iterator in interface java.lang.Iterable<VType>iterator in interface ShortObjectAssociativeContainer<VType>public <T extends ShortObjectProcedure<? super VType>> T forEach(T procedure)
ShortObjectProcedure. 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.forEach in interface ShortObjectAssociativeContainer<VType>public <T extends ShortObjectPredicate<? super VType>> T forEach(T predicate)
ShortObjectPredicate. 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.
The iteration is continued as long as the predicate returns
true.forEach in interface ShortObjectAssociativeContainer<VType>public ShortObjectHashMap.KeysContainer keys()
ObjectLookupContainer.keys in interface ShortObjectAssociativeContainer<VType>public ObjectCollection<VType> values()
ShortObjectAssociativeContainervalues in interface ShortObjectAssociativeContainer<VType>public ShortObjectHashMap<VType> clone()
clone in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String visualizeKeyDistribution(int characters)
ShortObjectMapvisualizeKeyDistribution in interface ShortObjectMap<VType>characters - The number of characters to "squeeze" the entire buffer into.public static <VType> ShortObjectHashMap<VType> from(short[] keys, VType[] values)
protected int hashKey(short key)
The default implementation mixes the hash of the key with 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.
protected double verifyLoadFactor(double loadFactor)
protected void rehash(short[] fromKeys,
VType[] fromValues)
protected void allocateBuffers(int arraySize)
protected void allocateThenInsertThenRehash(int slot,
short pendingKey,
VType pendingValue)
protected void shiftConflictingKeys(int gapSlot)
slot.Copyright © 2018 Carrot Search s.c.. All Rights Reserved.