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.
- Host: GitHub
- URL: https://github.com/plutoberth/huffmancompression
- Owner: Plutoberth
- License: mit
- Created: 2019-03-10T06:45:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-20T00:26:43.000Z (about 6 years ago)
- Last Synced: 2024-12-30T04:28:22.482Z (6 months ago)
- Topics: compression, cplusplus, decompression, huffman-coding
- Language: C++
- Homepage:
- Size: 60.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`