208. Implement Trie (Prefix Tree)
Đề Bài
A trie (pronounced as "try") or prefix tree is a tree data structure used to efficiently store and retrieve keys in a dataset of strings. There are various applications of this data structure, such as autocomplete and spellchecker.
Implement the Trie class:
Trie()Initializes the trie object.void insert(String word)Inserts the stringwordinto the trie.boolean search(String word)Returnstrueif the stringwordis in the trie (i.e., was inserted before), andfalseotherwise.boolean startsWith(String prefix)Returnstrueif there is a previously inserted stringwordthat has the prefixprefix, andfalseotherwise.
Example 1:
Input
["Trie", "insert", "search", "search", "startsWith", "insert", "search"]
[[], ["apple"], ["apple"], ["app"], ["app"], ["app"], ["app"]]
Output
[null, null, true, false, true, null, true]
Explanation
Trie trie = new Trie();
trie.insert("apple");
trie.search("apple"); // return True
trie.search("app"); // return False
trie.startsWith("app"); // return True
trie.insert("app");
trie.search("app"); // return True
Constraints:
1 <= word.length, prefix.length <= 2000wordandprefixconsist only of lowercase English letters.- At most
3 * 104calls in total will be made toinsert,search, andstartsWith.
Thuật Toán & Kỹ Thuật
⏱️ Thời gian
O(n²)
💾 Không gian
O(n)
Lời Giải
C++
0208-implement-trie-prefix-tree.cpp
struct TrieNode {
bool is_word;
TrieNode *child[26];
TrieNode() {
is_word = false;
for (int i = 0; i < 26; ++i) {
child[i] = nullptr;
}
}
};
class Trie {
private:
TrieNode *root;
public:
Trie() {
root = new TrieNode();
}
void insert(string word) {
TrieNode *curr = root;
for (char c : word) {
if (curr->child[c - 'a'] == nullptr) {
curr->child[c - 'a'] = new TrieNode();
}
curr = curr->child[c - 'a'];
}
curr->is_word = true;
}
bool search(string word) {
TrieNode *curr = root;
for (char c : word) {
if (curr->child[c - 'a'] == nullptr) {
return false;
}
curr = curr->child[c - 'a'];
}
return curr->is_word;
}
bool startsWith(string word) {
TrieNode *curr = root;
for (char c : word) {
if (curr->child[c - 'a'] == nullptr) {
return false;
}
curr = curr->child[c - 'a'];
}
return true;
}
};
/**
* Your Trie object will be instantiated and called as such:
* Trie* obj = new Trie();
* obj->insert(word);
* bool param_2 = obj->search(word);
* bool param_3 = obj->startsWith(prefix);
*/
Python
0208-implement-trie-prefix-tree.py
class Node:
def __init__(self):
self.isEndWord = False
self.children = defaultdict(Node)
class Trie:
def __init__(self):
self.root = Node()
def insert(self, word: str) -> None:
root = self.root
for char in word:
root = root.children[char]
root.isEndWord = True
def search(self, word: str) -> bool:
root = self.root
for char in word:
if char not in root.children:
return False
root = root.children[char]
return root.isEndWord
def startsWith(self, prefix: str) -> bool:
root = self.root
for char in prefix:
if char not in root.children:
return False
root = root.children[char]
return True
# Your Trie object will be instantiated and called as such:
# obj = Trie()
# obj.insert(word)
# param_2 = obj.search(word)
# param_3 = obj.startsWith(prefix)