No description
  • C++ 85.9%
  • CMake 14.1%
Find a file
2026-04-16 22:05:25 -06:00
.devcontainer starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
tests starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
.gitignore starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
CMakeLists.txt code 2026-04-16 22:05:25 -06:00
LICENSE starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
main.cpp code 2026-04-16 22:05:25 -06:00
README.md starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
trie.cpp starter-code for 3P-Trie 2026-04-05 09:50:41 -06:00
trie.h code 2026-04-16 22:05:25 -06:00

3P-Trie

To Compile/Run

  1. cmake . -B build (on Windows native, use cmake . -B build -G "MinGW Makefiles")
  2. cd build
  3. make (on Windows native, use mingw32-make)
  4. ./run-tests or ./run-main

Important Notes:

  • Do not modify the tests/ folder.