Package com.github.underscore
Class Trie
- java.lang.Object
-
- com.github.underscore.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, com.github.underscore.Trie.TrieNode root, int idx)
boolean
startsWith(String prefix)
-