Class Trie
- java.lang.Object
-
- g0201_0300.s0208_implement_trie_prefix_tree.Trie
-
public class Trie extends Object
-
-
Constructor Summary
Constructors Constructor Description Trie()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinsert(String word)booleansearch(String word)booleansearch(String word, g0201_0300.s0208_implement_trie_prefix_tree.Trie.TrieNode root, int idx)booleanstartsWith(String prefix)
-