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.TrieNodeTrie.TrieIterator. m_CurrentLeafthe current leaf nodeprotected Trie.TrieNodeTrie.TrieIterator. m_LastLeafthe last leaf for this root nodeprotected Trie.TrieNodeTrie. m_Rootthe root nodeprotected Trie.TrieNodeTrie.TrieIterator. m_Rootthe 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_Childrenfor fast access to the childrenMethods in adams.core that return Trie.TrieNode Modifier and Type Method Description protected Trie.TrieNodeTrie.TrieNode. add(Character c)adds the given charater to its childrenTrie.TrieNodeTrie.TrieNode. find(String suffix)returns the node with the given suffixTrie.TrieNodeTrie. getRoot()returns the root node of the trieMethods in adams.core with parameters of type Trie.TrieNode Modifier and Type Method Description protected StringTrie. 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
-