Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create 08_trie.cpp #153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions 10 October LeetCode Challenge 2021/08_trie.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
class Trie {
public:
Trie* children[26] = {};
bool isWord = false;

void insert(string word) {
Trie* cur = this;
for (char c : word) {
c -= 'a';
if (cur->children[c] == nullptr)
cur->children[c] = new Trie();
cur = cur->children[c];
}
cur->isWord = true;
}

bool search(string word) {
Trie* cur = this;
for (char c : word) {
c -= 'a';
if (cur->children[c] == nullptr) return false;
cur = cur->children[c];
}
return cur->isWord;
}

bool startsWith(string prefix) {
Trie* cur = this;
for (char c : prefix) {
c -= 'a';
if (cur->children[c] == nullptr) return false;
cur = cur->children[c];
}
return true;
}
};