Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
struct representing a trie node. More...
Public Attributes | |
std::unordered_map< char16_t, std::shared_ptr< Node > > | children |
bool | word_end = false |
boolean variable to represent the node end | |
struct representing a trie node.
std::unordered_map<char16_t, std::shared_ptr<Node> > data_structures::trie_using_hashmap::Trie::Node::children |
unordered map with key type char16_t and value is a shared pointer type of Node