@Generated(date="2015-05-07T09:33:04+0200",
value="KTypeVTypeHashMap.java")
public class IntCharHashMap
extends java.lang.Object
implements IntCharMap, Preallocable, java.lang.Cloneable
int to char, implemented using open
addressing with linear probing for collision resolution.
Note: read about important differences between hash and scatter sets.
IntCharScatterMap,
HPPC interfaces diagram| Modifier and Type | Class and Description |
|---|---|
class |
IntCharHashMap.KeysContainer
A view of the keys inside this hash map.
|
| Modifier and Type | Field and 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.
|
int[] |
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
|
char[] |
values
The array holding values.
|
| Constructor and Description |
|---|
IntCharHashMap()
New instance with sane defaults.
|
IntCharHashMap(int expectedElements)
New instance with sane defaults.
|
IntCharHashMap(IntCharAssociativeContainer container)
Create a hash map from all key-value pairs of another container.
|
IntCharHashMap(int expectedElements,
double loadFactor)
New instance with sane defaults.
|
IntCharHashMap(int expectedElements,
double loadFactor,
HashOrderMixingStrategy orderMixer)
New instance with the provided defaults.
|
| Modifier and Type | Method and Description |
|---|---|
char |
addTo(int key,
char incrementValue)
Adds
incrementValue to any existing value for the given key
or inserts incrementValue if key did not previously exist. |
protected void |
allocateBuffers(int arraySize)
Allocate new internal buffers.
|
protected void |
allocateThenInsertThenRehash(int slot,
int pendingKey,
char 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.
|
IntCharHashMap |
clone() |
boolean |
containsKey(int 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(IntCharHashMap 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 IntCharPredicate> |
forEach(T predicate)
Applies a given predicate to all keys-value pairs in this container.
|
<T extends IntCharProcedure> |
forEach(T procedure)
Applies a given procedure to all keys-value pairs in this container.
|
static IntCharHashMap |
from(int[] keys,
char[] values)
Creates a hash map from two index-aligned arrays of key-value pairs.
|
char |
get(int key) |
char |
getOrDefault(int key,
char defaultValue) |
int |
hashCode() |
protected int |
hashKey(int key)
Returns a hash code for the given key.
|
boolean |
indexExists(int index) |
char |
indexGet(int index)
Returns the value associated with an existing key.
|
void |
indexInsert(int index,
int key,
char value)
Inserts a key-value pair for a key that is not present in the map.
|
int |
indexOf(int 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).
|
char |
indexReplace(int index,
char newValue)
Replaces the value associated with an existing key and returns any previous
value stored for that key.
|
boolean |
isEmpty() |
java.util.Iterator<IntCharCursor> |
iterator()
Returns a cursor over the entries (key-value pairs) in this map.
|
IntCharHashMap.KeysContainer |
keys()
Returns a specialized view of the keys of this associated container.
|
char |
put(int key,
char value)
Place a given key and value in the container.
|
int |
putAll(IntCharAssociativeContainer 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 IntCharCursor> iterable)
Puts all key/value pairs from a given iterable into this map.
|
boolean |
putIfAbsent(int key,
char value)
Trove-inspired API method.
|
char |
putOrAdd(int key,
char putValue,
char incrementValue)
If
key exists, putValue is inserted into the map,
otherwise any existing value is incremented by additionValue. |
protected void |
rehash(int[] fromKeys,
char[] fromValues)
Rehash from old buffers to new buffers.
|
void |
release()
Removes all elements from the collection and additionally releases any
internal buffers.
|
char |
remove(int key)
Remove all values at the given key.
|
int |
removeAll(IntCharPredicate predicate)
Removes all keys (and associated values) for which the predicate returns
true. |
int |
removeAll(IntContainer other)
Removes all keys (and associated values) present in a given container.
|
int |
removeAll(IntPredicate predicate)
Removes all keys (and associated values) for which the predicate returns
true. |
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.
|
CharCollection |
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 int[] keys
public char[] values
protected int keyMixer
hashKey(int),
"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 IntCharHashMap()
public IntCharHashMap(int expectedElements)
expectedElements - The expected number of elements guaranteed not to cause buffer
expansion (inclusive).public IntCharHashMap(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 IntCharHashMap(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 IntCharHashMap(IntCharAssociativeContainer container)
public char put(int key,
char value)
put in interface IntCharMappublic int putAll(IntCharAssociativeContainer container)
putAll in interface IntCharMappublic int putAll(java.lang.Iterable<? extends IntCharCursor> iterable)
putAll in interface IntCharMappublic boolean putIfAbsent(int key,
char 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 char putOrAdd(int key,
char putValue,
char incrementValue)
key exists, putValue is inserted into the map,
otherwise any existing value is incremented by additionValue.putOrAdd in interface IntCharMapkey - The key of the value to adjust.putValue - The value to put if key does not exist.incrementValue - The value to add to the existing value if key exists.key (after
changes).public char addTo(int key,
char incrementValue)
incrementValue to any existing value for the given key
or inserts incrementValue if key did not previously exist.addTo in interface IntCharMapkey - The key of the value to adjust.incrementValue - The value to put or add to the existing value if key exists.key (after changes).public char remove(int key)
remove in interface IntCharMappublic int removeAll(IntContainer other)
keys().removeAll(container)but with no additional overhead.
removeAll in interface IntCharAssociativeContainerpublic int removeAll(IntCharPredicate predicate)
true.removeAll in interface IntCharAssociativeContainerpublic int removeAll(IntPredicate predicate)
true.removeAll in interface IntCharAssociativeContainerpublic char get(int key)
get in interface IntCharMappublic char getOrDefault(int key,
char defaultValue)
getOrDefault in interface IntCharMappublic boolean containsKey(int key)
true if this container has an association to a value
for the given key.containsKey in interface IntCharAssociativeContainerpublic int indexOf(int key)
indexOf in interface IntCharMapkey - The key to locate in the map.IntCharMap.indexExists(int),
IntCharMap.indexGet(int),
IntCharMap.indexInsert(int, int, char),
IntCharMap.indexReplace(int, char)public boolean indexExists(int index)
indexExists in interface IntCharMapindex - The index of a given key, as returned from IntCharMap.indexOf(int).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).IntCharMap.indexOf(int)public char indexGet(int index)
indexGet in interface IntCharMapindex - The index of an existing key.IntCharMap.indexOf(int)public char indexReplace(int index,
char newValue)
indexReplace in interface IntCharMapindex - The index of an existing key.IntCharMap.indexOf(int)public void indexInsert(int index,
int key,
char value)
indexInsert in interface IntCharMapindex - The index of a previously non-existing key, as returned from
IntCharMap.indexOf(int).IntCharMap.indexOf(int)public void clear()
clear in interface IntCharMapIntCharMap.release()public void release()
IntCharMap.clear() should be a better alternative since it'll avoid
reallocation.release in interface IntCharMapIntCharMap.clear()public int size()
size in interface IntCharAssociativeContainerpublic boolean isEmpty()
isEmpty in interface IntCharAssociativeContainertrue if this hash map contains no assigned
keys.public int hashCode()
hashCode in interface IntCharMaphashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
IntCharMap and both objects contains exactly the same key-value
pairs.equals in interface IntCharMapequals in class java.lang.Objectprotected boolean equalElements(IntCharHashMap other)
public void ensureCapacity(int expectedElements)
ensureCapacity in interface PreallocableexpectedElements - The total number of keys, inclusive.public java.util.Iterator<IntCharCursor> 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 IntCharAssociativeContaineriterator in interface java.lang.Iterable<IntCharCursor>public <T extends IntCharProcedure> T forEach(T procedure)
IntCharProcedure. 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 IntCharAssociativeContainerpublic <T extends IntCharPredicate> T forEach(T predicate)
IntCharPredicate. 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 IntCharAssociativeContainerpublic IntCharHashMap.KeysContainer keys()
ObjectLookupContainer.keys in interface IntCharAssociativeContainerpublic CharCollection values()
IntCharAssociativeContainervalues in interface IntCharAssociativeContainerpublic IntCharHashMap clone()
clone in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String visualizeKeyDistribution(int characters)
IntCharMapvisualizeKeyDistribution in interface IntCharMapcharacters - The number of characters to "squeeze" the entire buffer into.public static IntCharHashMap from(int[] keys, char[] values)
protected int hashKey(int 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(int[] fromKeys,
char[] fromValues)
protected void allocateBuffers(int arraySize)
protected void allocateThenInsertThenRehash(int slot,
int pendingKey,
char pendingValue)
protected void shiftConflictingKeys(int gapSlot)
slot.Copyright © 2015 Carrot Search s.c.. All Rights Reserved.