-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStreamOfCharacters.java
77 lines (70 loc) · 1.71 KB
/
StreamOfCharacters.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
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
76
77
/*https://leetcode.com/problems/stream-of-characters/*/
class TrieNode
{
TrieNode[] hash;
boolean isEndOfWord;
TrieNode()
{
hash = new TrieNode[26];
isEndOfWord = false;
}
}
class Trie
{
TrieNode root;
Trie()
{
root = new TrieNode();
}
public void insert(String word)
{
TrieNode temp = root;
for (int i = word.length()-1; i >= 0; --i)
{
if (temp.hash[word.charAt(i)-'a'] == null)
temp.hash[word.charAt(i)-'a'] = new TrieNode();
temp = temp.hash[word.charAt(i)-'a'];
}
temp.isEndOfWord = true;
}
public boolean search(StringBuffer word)
{
TrieNode temp = root;
for (int i = word.length()-1; i >= 0; --i)
{
char ch = word.charAt(i);
if (temp != null)
temp = temp.hash[ch-'a'];
if (temp != null && temp.isEndOfWord)
return true;
}
return false;
}
}
class StreamChecker {
StringBuffer buffer;
int maxLength = -1;
Trie trie;
public StreamChecker(String[] words)
{
buffer = new StringBuffer("");
trie = new Trie();
for (String word : words)
{
trie.insert(word);
maxLength = Math.max(maxLength,word.length());
}
}
public boolean query(char letter)
{
if(buffer.length() >= maxLength)
buffer.deleteCharAt(0);
buffer.append(letter);
return trie.search(buffer);
}
}
/**
* Your StreamChecker object will be instantiated and called as such:
* StreamChecker obj = new StreamChecker(words);
* boolean param_1 = obj.query(letter);
*/