Skip to content

The huffPP (Huffman Coding Plus Plus) is a utility tool written in C++ 20 to compact and unzip files using the huffman coding algorithm.

License

Notifications You must be signed in to change notification settings

fgarcia0x0/huffPP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

huffPP

The huffPP (Huffman Coding Plus Plus) is a utility tool written in C++ 20 to compact and unzip files using the huffman coding algorithm.

System Requirements

  • compiler that support at least C++ 20
  • cmake
  • ninja

How to Compile

Enter in your terminal:

cmake -S . -B build -GNinja -DCMAKE_BUILD_TYPE=Debug|Release

Go to the build folder, then:

cmake --build . -- -j 4