|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.carrotsearch.hppc.ByteShortOpenHashMap
@Generated(date="2011-11-28T23:36:04+0000", value="HPPC generated from: ByteShortOpenHashMap.java") public class ByteShortOpenHashMap
A hash map of byte
to short
, implemented using open
addressing with linear probing for collision resolution.
The internal buffers of this implementation (keys
, values
,
allocated
) are always allocated to the nearest size that is a power of two. When
the capacity exceeds the given load factor, the buffer size is doubled.
See ObjectObjectOpenHashMap
class for API similarities and differences against Java
Collections.
Important node. The implementation uses power-of-two tables and linear
probing, which may cause poor performance (many collisions) if hash values are
not properly distributed. This implementation uses rehashing
using MurmurHash3
.
Nested Class Summary | |
---|---|
class |
ByteShortOpenHashMap.KeysContainer
A view of the keys inside this hash map. |
Field Summary | |
---|---|
boolean[] |
allocated
Information if an entry (slot) in the values table is allocated
or empty. |
int |
assigned
Cached number of assigned slots in allocated . |
static int |
DEFAULT_CAPACITY
Default capacity. |
static float |
DEFAULT_LOAD_FACTOR
Default load factor. |
byte[] |
keys
Hash-indexed array holding all keys. |
float |
loadFactor
The load factor for this map (fraction of allocated slots before the buffers must be rehashed or reallocated). |
static int |
MIN_CAPACITY
Minimum capacity for the map. |
short[] |
values
Hash-indexed array holding all values associated to the keys stored in keys . |
Constructor Summary | |
---|---|
ByteShortOpenHashMap()
Creates a hash map with the default capacity of 16, load factor of 0.75f. |
|
ByteShortOpenHashMap(ByteShortAssociativeContainer container)
Create a hash map from all key-value pairs of another container. |
|
ByteShortOpenHashMap(int initialCapacity)
Creates a hash map with the given initial capacity, default load factor of 0.75f. |
|
ByteShortOpenHashMap(int initialCapacity,
float loadFactor)
Creates a hash map with the given initial capacity, load factor. |
Method Summary | ||
---|---|---|
void |
clear()
Clear all keys and values in the container. |
|
ByteShortOpenHashMap |
clone()
|
|
boolean |
containsKey(byte key)
Returns true if this container has an association to a value for
the given key. |
|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this set for equality. |
|
|
forEach(T procedure)
Applies a given procedure to all keys-value pairs in this container. |
|
static ByteShortOpenHashMap |
from(byte[] keys,
short[] values)
Creates a hash map from two index-aligned arrays of key-value pairs. |
|
static ByteShortOpenHashMap |
from(ByteShortAssociativeContainer container)
Create a hash map from another associative container. |
|
short |
get(byte key)
|
|
int |
hashCode()
|
|
boolean |
isEmpty()
|
|
java.util.Iterator<ByteShortCursor> |
iterator()
Returns a cursor over the entries (key-value pairs) in this map. |
|
ByteShortOpenHashMap.KeysContainer |
keys()
Returns a specialized view of the keys of this associated container. |
|
short |
lget()
Returns the last value saved in a call to containsKey(byte) . |
|
short |
lset(short key)
Sets the value corresponding to the key saved in the last call to containsKey(byte) , if and only if the key exists
in the map already. |
|
static ByteShortOpenHashMap |
newInstance()
Create a new hash map without providing the full generic signature (constructor shortcut). |
|
static ByteShortOpenHashMap |
newInstance(int initialCapacity,
float loadFactor)
Create a new hash map without providing the full generic signature (constructor shortcut). |
|
protected int |
nextCapacity(int current)
Return the next possible capacity, counting from the current buffers' size. |
|
short |
put(byte key,
short value)
Place a given key and value in the container. |
|
int |
putAll(ByteShortAssociativeContainer 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 ByteShortCursor> iterable)
Puts all key/value pairs from a given iterable into this map. |
|
boolean |
putIfAbsent(byte key,
short value)
Trove-inspired API method. |
|
short |
putOrAdd(byte key,
short putValue,
short additionValue)
Trove-inspired API method. |
|
short |
remove(byte key)
Remove all values at the given key. |
|
int |
removeAll(ByteContainer container)
Removes all keys (and associated values) present in a given container. |
|
int |
removeAll(BytePredicate predicate)
Removes all keys (and associated values) for which the predicate returns true . |
|
protected int |
roundCapacity(int requestedCapacity)
Round the capacity to the next allowed value. |
|
protected void |
shiftConflictingKeys(int slotCurr)
Shift all the slot-conflicting keys allocated to (and including) slot . |
|
int |
size()
|
|
java.lang.String |
toString()
Convert the contents of this map to a human-friendly string. |
|
ShortContainer |
values()
Returns a container view of all values present in this container. |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int DEFAULT_CAPACITY
public static final int MIN_CAPACITY
public static final float DEFAULT_LOAD_FACTOR
public byte[] keys
values
public short[] values
keys
.
keys
public boolean[] allocated
values
table is allocated
or empty.
assigned
public int assigned
allocated
.
public final float loadFactor
Constructor Detail |
---|
public ByteShortOpenHashMap()
See class notes about hash distribution importance.
public ByteShortOpenHashMap(int initialCapacity)
See class notes about hash distribution importance.
initialCapacity
- Initial capacity (greater than zero and automatically
rounded to the next power of two).public ByteShortOpenHashMap(int initialCapacity, float loadFactor)
See class notes about hash distribution importance.
initialCapacity
- Initial capacity (greater than zero and automatically
rounded to the next power of two).loadFactor
- The load factor (greater than zero and smaller than 1).public ByteShortOpenHashMap(ByteShortAssociativeContainer container)
Method Detail |
---|
public short put(byte key, short value)
put
in interface ByteShortMap
public final int putAll(ByteShortAssociativeContainer container)
putAll
in interface ByteShortMap
public final int putAll(java.lang.Iterable<? extends ByteShortCursor> iterable)
putAll
in interface ByteShortMap
public final boolean putIfAbsent(byte key, short 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 final short putOrAdd(byte key, short putValue, short additionValue)
if (map.containsKey(key)) map.lset(map.lget() + additionValue); else map.put(key, putValue);
key
- The key of the value to adjust.putValue
- The value to put if key
does not exist.additionValue
- The value to add to the existing value if key
exists.
key
(after changes).public short remove(byte key)
remove
in interface ByteShortMap
protected final void shiftConflictingKeys(int slotCurr)
slot
.
public final int removeAll(ByteContainer container)
keys().removeAll(container)but with no additional overhead.
removeAll
in interface ByteShortAssociativeContainer
public final int removeAll(BytePredicate predicate)
true
.
An alias to:
keys().removeAll(container)but with no additional overhead.
removeAll
in interface ByteShortAssociativeContainer
public short get(byte key)
Use the following snippet of code to check for key existence first and then retrieve the value if it exists.
if (map.containsKey(key)) value = map.lget();
get
in interface ByteShortMap
public short lget()
containsKey(byte)
.
containsKey(byte)
public short lset(short key)
containsKey(byte)
, if and only if the key exists
in the map already.
containsKey(byte)
public boolean containsKey(byte key)
true
if this container has an association to a value for
the given key.
Saves the associated value for fast access using lget()
or lset(short)
.
if (map.containsKey(key)) value = map.lget();or, for example to modify the value at the given key without looking up its slot twice:
if (map.containsKey(key)) map.lset(map.lget() + 1);
containsKey
in interface ByteShortAssociativeContainer
protected int roundCapacity(int requestedCapacity)
protected int nextCapacity(int current)
public void clear()
Does not release internal buffers.
clear
in interface ByteShortAssociativeContainer
public int size()
size
in interface ByteShortAssociativeContainer
public boolean isEmpty()
Note that an empty container may still contain many deleted keys (that occupy buffer space). Adding even a single element to such a container may cause rehashing.
isEmpty
in interface ByteShortAssociativeContainer
true
if this hash map contains no assigned keys.public int hashCode()
hashCode
in interface ByteShortMap
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
ByteShortMap
and both objects contains exactly the same key-value pairs.
equals
in interface ByteShortMap
equals
in class java.lang.Object
public java.util.Iterator<ByteShortCursor> 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 ByteShortAssociativeContainer
iterator
in interface java.lang.Iterable<ByteShortCursor>
public <T extends ByteShortProcedure> T forEach(T procedure)
ByteShortProcedure
. 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 ByteShortAssociativeContainer
public ByteShortOpenHashMap.KeysContainer keys()
ObjectLookupContainer
.
keys
in interface ByteShortAssociativeContainer
public ShortContainer values()
ByteShortAssociativeContainer
values
in interface ByteShortAssociativeContainer
public ByteShortOpenHashMap clone()
clone
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public static ByteShortOpenHashMap from(byte[] keys, short[] values)
public static ByteShortOpenHashMap from(ByteShortAssociativeContainer container)
public static ByteShortOpenHashMap newInstance()
public static ByteShortOpenHashMap newInstance(int initialCapacity, float loadFactor)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |