-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppSimpleTrie.java
More file actions
53 lines (40 loc) · 847 Bytes
/
AppSimpleTrie.java
File metadata and controls
53 lines (40 loc) · 847 Bytes
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
package techgig;
import java.util.ArrayList;
import java.util.List;
/* simple node - this Trie stores strings of Characters */
class Node {
Character data;
boolean markedFinal = false;
boolean isRoot = false;
List<Node> references = new ArrayList<Node>();
Node(boolean isRoot) {
this.isRoot = isRoot;
}
Node(Character arg) {
this.data = arg;
}
public Character getCharacter() {
return data;
}
}
interface StringTrie {
public void add(String arg);
public List<String> get(String arg);
}
class TreeTrie implements StringTrie {
Node root;
TreeTrie() {
root = new Node(true);
}
public void add(String arg) {
}
public List<String> get(String arg) {
return null;
}
}
/* A Trie of Characters */
public class AppSimpleTrie {
public static void main(String[] args) {
StringTrie trie = new TreeTrie();
}
}