https://github.com/imskully/huffman-tree-encoding
A text encoder and decoder based on huffman text compression.
https://github.com/imskully/huffman-tree-encoding
huffman-compression-algorithm java queues tree-structure
Last synced: 2 months ago
JSON representation
A text encoder and decoder based on huffman text compression.
- Host: GitHub
- URL: https://github.com/imskully/huffman-tree-encoding
- Owner: ImSkully
- License: gpl-3.0
- Created: 2021-12-14T05:51:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-19T23:57:13.000Z (about 3 years ago)
- Last Synced: 2025-01-15T10:06:27.217Z (4 months ago)
- Topics: huffman-compression-algorithm, java, queues, tree-structure
- Language: Java
- Homepage: https://skully.tech
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Huffman Tree Text Compression


A text encoder and decoder based on huffman text compression. The output from the Huffman algorithm can be viewed as a variable-length code table for encoding a source symbol *(such as a character in a file)*. The algorithm derives this table from the estimated probability or frequency of occurrence (weight) for each possible value of the source symbol.
## Design Documentation
For a detailed overview of the full system design and specification, along with usability of all features that exist, refer to the [Design Documentation available in the Wiki](https://github.com/ImSkully/huffman-tree-encoding/wiki).