Class AbstractPatriciaTrie<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
org.apache.commons.collections4.trie.AbstractBitwiseTrie<K,V>
org.apache.commons.collections4.trie.AbstractPatriciaTrie<K,V>
- Type Parameters:
K
- the type of the keys in this mapV
- the type of the values in this map
- All Implemented Interfaces:
Serializable
,Map<K,
,V> SortedMap<K,
,V> Get<K,
,V> IterableGet<K,
,V> IterableMap<K,
,V> IterableSortedMap<K,
,V> OrderedMap<K,
,V> Put<K,
,V> Trie<K,
V>
- Direct Known Subclasses:
PatriciaTrie
This class implements the base PATRICIA algorithm and everything that
is related to the
Map
interface.- Since:
- 4.0
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static class
ATrie
is a set ofAbstractPatriciaTrie.TrieEntry
nodes.Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,
V>, AbstractMap.SimpleImmutableEntry<K, V> -
Field Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
AbstractPatriciaTrie
(KeyAnalyzer<? super K> keyAnalyzer) Constructs a newTrie
using the givenKeyAnalyzer
.protected
AbstractPatriciaTrie
(KeyAnalyzer<? super K> keyAnalyzer, Map<? extends K, ? extends V> map) Constructs a newTrie
using the givenKeyAnalyzer
and initializes theTrie
with the values from the providedMap
. -
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Removes all of the mappings from this map.Comparator
<? super K> boolean
Tests for presence of a given key.entrySet()
Gets a set view of the mappings contained in this map.firstKey()
Gets the first key currently in this map.Gets a value at a given key.keySet()
Gets a view of the keys contained in this map.lastKey()
Gets the last key currently in this map.Obtains anOrderedMapIterator
over the map.Gets the next key after the one specified.Returns a view of thisTrie
of all elements that are prefixed by the given key.previousKey
(K key) Gets the previous key before the one specified.Associates the specified value with the specified key in this map.Remove a key-value mappings.Returns theMap.Entry
whose key is closest in a bitwise XOR metric to the given key.Returns the key that is closest in a bitwise XOR metric to the provided key.selectValue
(K key) Returns the value whose key is closest in a bitwise XOR metric to the provided key.int
size()
Gets the number of key-value mappings in this map.values()
Gets a a collection view of the values contained in this map.Methods inherited from class org.apache.commons.collections4.trie.AbstractBitwiseTrie
getKeyAnalyzer, toString
Methods inherited from class java.util.AbstractMap
clone, containsValue, equals, hashCode, isEmpty, putAll
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.commons.collections4.Get
containsValue, isEmpty
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsValue, equals, forEach, getOrDefault, hashCode, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace, replaceAll
-
Field Details
-
modCount
-
-
Constructor Details
-
AbstractPatriciaTrie
Constructs a newTrie
using the givenKeyAnalyzer
.- Parameters:
keyAnalyzer
- theKeyAnalyzer
.
-
AbstractPatriciaTrie
protected AbstractPatriciaTrie(KeyAnalyzer<? super K> keyAnalyzer, Map<? extends K, ? extends V> map) Constructs a newTrie
using the givenKeyAnalyzer
and initializes theTrie
with the values from the providedMap
.- Parameters:
keyAnalyzer
- theKeyAnalyzer
.map
- The source map.
-
-
Method Details
-
clear
Description copied from interface:Put
Removes all of the mappings from this map. -
comparator
-
containsKey
Description copied from interface:Get
Tests for presence of a given key.- Specified by:
containsKey
in interfaceGet<K,
V> - Specified by:
containsKey
in interfaceMap<K,
V> - Overrides:
containsKey
in classAbstractMap<K,
V> - Parameters:
k
- key whose presence in this map is to be tested- Returns:
true
if this map contains a mapping for the specified key- See Also:
-
entrySet
Description copied from interface:Get
Gets a set view of the mappings contained in this map. -
firstKey
Description copied from interface:OrderedMap
Gets the first key currently in this map.- Returns:
- the first key currently in this map
-
get
Description copied from interface:Get
Gets a value at a given key.- Specified by:
get
in interfaceGet<K,
V> - Specified by:
get
in interfaceMap<K,
V> - Overrides:
get
in classAbstractMap<K,
V> - Parameters:
k
- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
null
if this map contains no mapping for the key - See Also:
-
headMap
-
keySet
Description copied from interface:Get
Gets a view of the keys contained in this map. -
lastKey
Description copied from interface:OrderedMap
Gets the last key currently in this map.- Returns:
- the last key currently in this map
-
mapIterator
Description copied from interface:OrderedMap
Obtains anOrderedMapIterator
over the map.An ordered map iterator is an efficient way of iterating over maps in both directions.
- Returns:
- a map iterator
-
nextKey
Description copied from interface:OrderedMap
Gets the next key after the one specified.- Parameters:
key
- the key to search for next from- Returns:
- the next key, null if no match or at end
-
prefixMap
Description copied from interface:Trie
Returns a view of thisTrie
of all elements that are prefixed by the given key.In a
Trie
with fixed size keys, this is essentially aMap.get(Object)
operation.For example, if the
Trie
contains 'Anna', 'Anael', 'Analu', 'Andreas', 'Andrea', 'Andres', and 'Anatole', then a lookup of 'And' would return 'Andreas', 'Andrea', and 'Andres'. -
previousKey
Description copied from interface:OrderedMap
Gets the previous key before the one specified.- Parameters:
key
- the key to search for previous from- Returns:
- the previous key, null if no match or at start
-
put
Description copied from interface:Put
Associates the specified value with the specified key in this map.Note that the return type is Object, rather than V as in the Map interface. See the class Javadoc for further info.
- Specified by:
put
in interfaceMap<K,
V> - Specified by:
put
in interfacePut<K,
V> - Overrides:
put
in classAbstractMap<K,
V> - Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified key- Returns:
- the previous value associated with
key
, ornull
if there was no mapping forkey
. (Anull
return can also indicate that the map previously associatednull
withkey
, if the implementation supportsnull
values.) - See Also:
-
remove
Remove a key-value mappings.- Specified by:
remove
in interfaceGet<K,
V> - Specified by:
remove
in interfaceMap<K,
V> - Overrides:
remove
in classAbstractMap<K,
V> - Parameters:
k
- key whose mapping is to be removed from the map- Returns:
- the previous value associated with
key
, ornull
if there was no mapping forkey
. - Throws:
ClassCastException
- if provided key is of an incompatible type- See Also:
-
select
Returns theMap.Entry
whose key is closest in a bitwise XOR metric to the given key. This is NOT lexicographic closeness. For example, given the keys:- D = 1000100
- H = 1001000
- L = 1001100
Trie
contained 'H' and 'L', a lookup of 'D' would return 'L', because the XOR distance between D & L is smaller than the XOR distance between D & H.- Parameters:
key
- the key to use in the search- Returns:
- the
Map.Entry
whose key is closest in a bitwise XOR metric to the provided key
-
selectKey
Returns the key that is closest in a bitwise XOR metric to the provided key. This is NOT lexicographic closeness! For example, given the keys:- D = 1000100
- H = 1001000
- L = 1001100
Trie
contained 'H' and 'L', a lookup of 'D' would return 'L', because the XOR distance between D & L is smaller than the XOR distance between D & H.- Parameters:
key
- the key to use in the search- Returns:
- the key that is closest in a bitwise XOR metric to the provided key
-
selectValue
Returns the value whose key is closest in a bitwise XOR metric to the provided key. This is NOT lexicographic closeness! For example, given the keys:- D = 1000100
- H = 1001000
- L = 1001100
Trie
contained 'H' and 'L', a lookup of 'D' would return 'L', because the XOR distance between D & L is smaller than the XOR distance between D & H.- Parameters:
key
- the key to use in the search- Returns:
- the value whose key is closest in a bitwise XOR metric to the provided key
-
size
Description copied from interface:Get
Gets the number of key-value mappings in this map. -
subMap
-
tailMap
-
values
Description copied from interface:Get
Gets a a collection view of the values contained in this map.
-