-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.java
More file actions
75 lines (68 loc) · 1.77 KB
/
Copy pathsolution.java
File metadata and controls
75 lines (68 loc) · 1.77 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
// 208. Implement Trie (Prefix Tree)
// https://leetcode.com/problems/implement-trie-prefix-tree/
// Medium | Java | Accepted 2025-12-20
// Runtime 33 ms | Memory 62.2 MB
class Trie {
class TrieNode {
private TrieNode[] children;
private boolean isEnd;
public TrieNode()
{
children = new TrieNode[26];
isEnd = false;
}
}
private TrieNode root;
public Trie() {
root = new TrieNode();
}
public void insert(String word) {
TrieNode temp = root;
char[] arr = word.toCharArray();
for(char c : arr)
{
int ind = c - 'a';
if(temp.children[ind] == null)
{
temp.children[ind] = new TrieNode();
}
temp = temp.children[ind];
}
temp.isEnd = true;
}
public boolean search(String word) {
TrieNode temp = root;
char[] arr = word.toCharArray();
for(char c : arr)
{
int ind = c - 'a';
if(temp.children[ind]==null)
{
return false;
}
temp = temp.children[ind];
}
return temp.isEnd;
}
public boolean startsWith(String prefix) {
TrieNode temp = root;
char[] arr = prefix.toCharArray();
for(char c : arr)
{
int ind = c - 'a';
if(temp.children[ind]==null)
{
return false;
}
temp = temp.children[ind];
}
return true;
}
}
/**
* Your Trie object will be instantiated and called as such:
* Trie obj = new Trie();
* obj.insert(word);
* boolean param_2 = obj.search(word);
* boolean param_3 = obj.startsWith(prefix);
*/