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

https://github.com/00ryanwelzel/huffmanencoding

cpp implementation of huffman's method of data compression.
https://github.com/00ryanwelzel/huffmanencoding

Last synced: 3 months ago
JSON representation

cpp implementation of huffman's method of data compression.

Awesome Lists containing this project

README

          

# huffmanEncoding

## (Ryan Welzel 5/6/2025)

Simple huffman encoder.

---

Features:
- Builds a huffman tree using character frequencies.
- Generates binary codes based on character frequencies.
- Encodes a string based on the generated binary codes.
- Displays all binary codes and the encoded string.

Requirements:
- C++11 compatable compiler (g++ clang++ etc)