Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Public Attributes | |
std::shared_ptr< TrieNode > | character [ALPHABETS] {nullptr} |
bool | isEndOfWord {false} |
Structure of trie node. This struct doesn't need a constructor as we are initializing using intializer list which is more efficient than if we had done so with constructor.
std::shared_ptr<TrieNode> Trie::TrieNode::character[ALPHABETS] {nullptr} |
bool Trie::TrieNode::isEndOfWord {false} |