Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ByteByteGoHq/coding-interview-patterns
/ Trie
Method
Trie
cpp/Tries/design_a_trie.cpp:18–20 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
16
class Trie {
17
public:
18
Trie() {
19
root = new TrieNode();
20
}
21
22
~Trie() {
23
delete root;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected