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 void
insert(String word)
boolean
search(String word)
boolean
search(String word, TrieNode root, int idx)
boolean
startsWith(String prefix)
-