/huff

an ascii textfile compressor and decompressor using Huffman algorithm

Primary LanguageC++

Usage

build the project

just setup && just build

to compress a file:

bin/huff --compress [target.txt]

to decompress a file:

bin/huff --decompress [target.txt.hf]

you can check the available options:

bin/huff --help

Limitations

  • only supports characters from the ASCII table

References