hunt.collection.ArrayTernaryTrie

Undocumented in source.

Members

Classes

ArrayTernaryTrie
class ArrayTernaryTrie(V)

<p>A Ternary Trie string lookup data structure.</p> <p> This Trie is of a fixed size and cannot grow (which can be a good thing with regards to DOS when used as a cache). </p> <p> The Trie is stored in 3 arrays: </p> <dl> <dt>char[] _tree</dt><dd>This is semantically 2 dimensional array flattened into a 1 dimensional char array. The second dimension is that every 4 sequential elements represents a row of: character; hi index; eq index; low index, used to build a ternary trie of key strings.</dd> <dt>string[] _key</dt><dd>An array of key values where each element matches a row in the _tree array. A non zero key element indicates that the _tree row is a complete key rather than an intermediate character of a longer key.</dd> <dt>V[] _value</dt><dd>An array of values corresponding to the _key array</dd> </dl> <p>The lookup of a value will iterate through the _tree array matching characters. If the equal tree branch is followed, then the _key array is looked up to see if this is a complete match. If a match is found then the _value array is looked up to return the matching value. </p> <p> This Trie may be instantiated either as case sensitive or insensitive. </p> <p>This Trie is not Threadsafe and contains no mutual exclusion or deliberate memory barriers. It is intended for an ArrayTrie to be built by a single thread and then used concurrently by multiple threads and not mutated during that access. If concurrent mutations of the Trie is required external locks need to be applied. </p>

Growing
class Growing(V)
Undocumented in source.

Meta