This is a C++ implementation of a RadixTree
The design follows the RAII idiom, and the tree is fully templated to support reuse with any data type
- C++ 14 (or greater)
RadixTree::printTree()
method to print the tree. Compile with -D DEBUG
- remove method
- trasverse method, in order to apply your custom function
- DOT graph
- tests