This project contains an archiver that uses the Huffman algorithm.
-c
compressing mode
-u
decompressing mode
-f <FILE>, --file <FILE>
input file
-o <FILE>, --output <FILE>
output file
<decompressed data size>
<compressed data size>
<header size>
<compressed data size>
<decompressed data size>
<header size>
./archiver -c -f data -o compressedData
18074
11845
518
./archiver -u -f compressedData -o data
11845
18074
518