-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrie.java
More file actions
75 lines (65 loc) · 1.94 KB
/
Trie.java
File metadata and controls
75 lines (65 loc) · 1.94 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package solutions;
import java.util.HashMap;
import java.util.Map;
// [Problem] https://leetcode.com/problems/implement-trie-prefix-tree
class TrieNode {
boolean isWord;
Map<Character, TrieNode> children;
public TrieNode() {
isWord = false;
children = new HashMap<>();
}
}
class Trie {
TrieNode root;
public Trie() {
root = new TrieNode();
}
// O(n) time, O(n) space
// where n = length of word
public void insert(String word) {
TrieNode node = root;
for (int i = 0; i < word.length(); i++) {
char letter = word.charAt(i);
if (!node.children.containsKey(letter)) {
node.children.put(letter, new TrieNode());
}
node = node.children.get(letter);
}
node.isWord = true;
}
// O(n) time, O(1) space
public boolean search(String word) {
TrieNode node = root;
for (int i = 0; i < word.length(); i++) {
char letter = word.charAt(i);
if (!node.children.containsKey(letter)) {
return false;
}
node = node.children.get(letter);
}
return node.isWord;
}
// O(n) time, O(1) space
public boolean startsWith(String prefix) {
TrieNode node = root;
for (int i = 0; i < prefix.length(); i++) {
char letter = prefix.charAt(i);
if (!node.children.containsKey(letter)) {
return false;
}
node = node.children.get(letter);
}
return true;
}
// Test
public static void main(String[] args) {
Trie trie = new Trie();
trie.insert("apple");
System.out.println(trie.search("apple") == true);
System.out.println(trie.search("app") == false);
System.out.println(trie.startsWith("app") == true);
trie.insert("app");
System.out.println(trie.search("app") == true);
}
}