2023-03-17 Daily Challenge
Today I have done leetcode's March LeetCoding Challenge with cpp.
March LeetCoding Challenge 17
Description
Implement Trie (Prefix Tree)
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.
Solution
auto speedup = [](){
cin.tie(nullptr);
cout.tie(nullptr);
ios::sync_with_stdio(false);
return 0;
}();
struct TrieNode {
bool isEnd = false;
TrieNode *nodes[26] = {};
~TrieNode() {
for(auto node : nodes) {
delete node;
}
}
};
class Trie {
TrieNode *root;
public:
/** Initialize your data structure here. */
Trie() {
root = new TrieNode();
}
/** Inserts a word into the trie. */
void insert(string word) {
TrieNode *cur = root;
for(auto c : word) {
if(cur->nodes[c - 'a'] == nullptr) {
cur->nodes[c - 'a'] = new TrieNode();
}
cur = cur->nodes[c - 'a'];
}
cur->isEnd = true;
}
/** Returns if the word is in the trie. */
bool search(string word) {
TrieNode *cur = root;
for(auto c : word) {
if(cur->nodes[c - 'a'] == nullptr) return false;
cur = cur->nodes[c - 'a'];
}
return cur->isEnd;
}
/** Returns if there is any word in the trie that starts with the given prefix. */
bool startsWith(string prefix) {
TrieNode *cur = root;
for(auto c : prefix) {
if(cur->nodes[c - 'a'] == nullptr) return false;
cur = cur->nodes[c - 'a'];
}
return true;
}
};
// Accepted
// 15/15 cases passed (40 ms)
// Your runtime beats 99.23 % of cpp submissions
// Your memory usage beats 73.15 % of cpp submissions (44.9 MB)