-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrieDS.java
39 lines (34 loc) · 1.04 KB
/
TrieDS.java
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
import java.util.*;
public class TrieDS {
static class Node {
Node[] children;
boolean eow;
public Node() {
children = new Node[26];
for (int i = 0; i < 26; i++) {
children[i] = null;
}
eow = false;
}
}
static Node root = new Node();
public static void insert(String word) {
for (int i = 0; i < word.length(); i++) { // time complexity is O(L)
int idx = word.charAt(i) - 'a';
if (root.children[idx] == null) {
// create new node
root.children[idx] = new Node();
}
if (i == word.length() - 1) {
root.children[idx].eow = true;
}
root = root.children[idx];
}
}
public static void main(String[] args) {
String words[] = { "a", "the", "there", "their", "any" };
for (int i = 0; i < words.length; i++) {
insert(words[i]);
}
}
}