Uses of Class
adams.core.Trie.TrieNode
-
Packages that use Trie.TrieNode Package Description adams.core -
-
Uses of Trie.TrieNode in adams.core
Fields in adams.core declared as Trie.TrieNode Modifier and Type Field Description protected Trie.TrieNode
Trie.TrieIterator. m_CurrentLeaf
the current leaf nodeprotected Trie.TrieNode
Trie.TrieIterator. m_LastLeaf
the last leaf for this root nodeprotected Trie.TrieNode
Trie. m_Root
the root nodeprotected Trie.TrieNode
Trie.TrieIterator. m_Root
the node to use as rootFields in adams.core with type parameters of type Trie.TrieNode Modifier and Type Field Description protected Hashtable<Character,Trie.TrieNode>
Trie.TrieNode. m_Children
for fast access to the childrenMethods in adams.core that return Trie.TrieNode Modifier and Type Method Description protected Trie.TrieNode
Trie.TrieNode. add(Character c)
adds the given charater to its childrenTrie.TrieNode
Trie.TrieNode. find(String suffix)
returns the node with the given suffixTrie.TrieNode
Trie. getRoot()
returns the root node of the trieMethods in adams.core with parameters of type Trie.TrieNode Modifier and Type Method Description protected String
Trie. toString(Trie.TrieNode node)
returns the node as StringConstructors in adams.core with parameters of type Trie.TrieNode Constructor Description TrieIterator(Trie.TrieNode node)
initializes the iterator
-