A C++ implementation of Huffman coding for file compression & decompression.
- C++17 or higher
- A C++ compiler supporting C++17 standard (e.g., GCC 7+, Clang 5+)
mkdir build
cd build
cmake ..
makeThe project includes a test suite using Google Test framework. Tests can be run with:
./huffman_tests./huffman <input_file> <output_file>