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.
- Host: GitHub
- URL: https://github.com/00ryanwelzel/huffmanencoding
- Owner: 00ryanwelzel
- Created: 2025-05-07T05:28:16.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-07T05:31:26.000Z (5 months ago)
- Last Synced: 2025-05-31T02:26:53.764Z (4 months ago)
- Language: C++
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)