Implementation in CMU 15-445
- Class
Triewith ashared_ptrpointing toTrieNode - Class
TrieNode- Contains
children_, a map fromchartoshared_ptrpointing to otherTrieNode - Class
TrieNodeWithValueinherit fromTrieNodeact as a left node (or terminal node)- The value of a key is stored in the node representing the last char of the key.
- Contains