radix_tree
STL like container of radix tree (a.k.a. PATRICIA trie) in C++
File Explorer
Download Latest Version (.zip)- FUNDING.yml
- GTest.cmake
- example1.cpp
- example2.cpp
- CMakeLists.txt
- common.hpp
- test_radix_tree_erase.cpp
- test_radix_tree_find.cpp
- test_radix_tree_greedy_match.cpp
- test_radix_tree_insert.cpp
- test_radix_tree_iterator.cpp
- test_radix_tree_longest_match.cpp
- test_radix_tree_prefix_match.cpp
- .travis.yml
- CMakeLists.txt
- COPYING
- radix_tree.hpp
- radix_tree_it.hpp
- radix_tree_node.hpp
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/ytakano/radix_tree
Downloads the entire project code from GitHub to your computer.
cd radix_tree
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
~/radix_tree/build $ cmake .. -DBUILD_TESTS=On
Type this command into your terminal and run it.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
