Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 600 Bytes

README.md

File metadata and controls

36 lines (21 loc) · 600 Bytes

Huffman Coding

Short Description

This program using Huffman Coding to compress and decompress files. Users can compress an inputted file with ./encode and decompress a file using ./decode. Users can also print statistics about the compression.

Build:

make all
make encode
make decode

Running:

./encode OPTIONS
./decode OPTIONS

Options:

-h              Program usage and help.
-v              Print compression statistics.
-i infile       Input file.
-o outfile      Output file.

Formatting:

make format

Cleaning:

make clean