Trie(发音类似 “try”)或者说 前缀树 是一种树形数据结构,用于高效地存储和检索字符串数据集中的键。这一数据结构有相当多的应用情景,例如自动补全和拼写检查。
请你实现 Trie 类:
Trie() 初始化前缀树对象。
void insert(String word) 向前缀树中插入字符串 word 。
boolean search(String word) 如果字符串 word 在前缀树中,返回 true(即,在检索之前已经插入);否则,返回 false 。
boolean startsWith(String prefix) 如果之前已经插入的字符串 word 的前缀之一为 prefix ,返回 true ;否则,返回 false 。
示例:
输入
[“Trie”, “insert”, “search”, “search”, “startsWith”, “insert”, “search”]
[[], [“apple”], [“apple”], [“app”], [“app”], [“app”], [“app”]]
输出
[null, null, true, false, true, null, true]
解释
Trie trie = new Trie();
trie.insert(“apple”);
trie.search(“apple”); // 返回 True
trie.search(“app”); // 返回 False
trie.startsWith(“app”); // 返回 True
trie.insert(“app”);
trie.search(“app”); // 返回 True
提示:
1 <= word.length, prefix.length <= 2000
word 和 prefix 仅由小写英文字母组成
insert、search 和 startsWith 调用次数 总计 不超过 3 * 104^44 次
我们可以用树中的一个节点表示一个英文字母,该节点中包含子树节点以及一个布尔值用来标识是否是完整单词:
class Node {
public:
Node() {
next = vector<Node *>(26, nullptr);
}
~Node() {
for (Node *cur : next) {
delete cur;
}
}
vector<Node *> next;
bool isEnd = false;
};
class Trie {
public:
Trie() {
root = new Node;
}
~Trie() {
delete root;
}
void insert(string word) {
Node *cur = root;
for (char c : word) {
int idx = c - 'a';
if (cur->next[idx] == nullptr) {
cur->next[idx] = new Node();
}
cur = cur->next[idx];
}
cur->isEnd = true;
}
bool search(string word) {
Node *cur = root;
for (char c : word) {
int idx = c - 'a';
if (cur->next[idx] == nullptr) {
return false;
}
cur = cur->next[idx];
}
return cur->isEnd;
}
bool startsWith(string prefix) {
Node *cur = root;
for (char c : prefix) {
int idx = c - 'a';
if (cur->next[idx] == nullptr) {
return false;
}
cur = cur->next[idx];
}
return true;
}
private:
Node *root;
};
/**
* 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);
*/
时间复杂度:初始化为 O(1),insert 为 O(n∣Σ∣),其余为 O(n),其中 n 是 word 的长度,∣Σ∣=26 是字符集合的大小。注意创建一个节点需要 O(∣Σ∣) 的时间(如果用的是数组)。
空间复杂度:O(qn∣Σ∣)。其中 q 是 insert 的调用次数。

1394

被折叠的 条评论
为什么被折叠?



