1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| class Trie {
Trie[] next; boolean isEnd;
public Trie() { next = new Trie[26]; isEnd = false; } public void insert(String word) { Trie node = this; for (int i = 0; i < word.length(); ++i) { char c = word.charAt(i); if (node.next[c - 'a'] == null) { node.next[c - 'a'] = new Trie(); } node = node.next[c - 'a']; } node.isEnd = true; } public boolean search(String word) { Trie node = this; for (int i = 0; i < word.length(); ++i) { char c = word.charAt(i); node = node.next[c - 'a']; if (node == null) return false; } return node.isEnd == true; } public boolean startsWith(String prefix) { Trie node = this; for (int i = 0; i < prefix.length(); ++i) { char c = prefix.charAt(i); node = node.next[c - 'a']; if (node == null) return false; } return true; } }
|