An open API service indexing awesome lists of open source software.

https://github.com/plutoberth/huffmancompression

A simple C++ Huffman compression/decompression program.
https://github.com/plutoberth/huffmancompression

compression cplusplus decompression huffman-coding

Last synced: 4 months ago
JSON representation

A simple C++ Huffman compression/decompression program.

Awesome Lists containing this project

README

        

# A Huffman compression program

A very simple Huffman compression program. If you compile it with full optimizations, it runs pretty quickly. It currently only supports only ASCII strings (so, a book), but it could be extended to support UTF-8 pretty easily.

**Compression**: `huffman.exe source.txt target.hfmn`

**Decompression**: `huffman.exe --d source.hfmn target.txt`