https://github.com/nelsongillo/huffman
encode/decode files using huffman coding
https://github.com/nelsongillo/huffman
huffman-coding rust-lang
Last synced: 12 months ago
JSON representation
encode/decode files using huffman coding
- Host: GitHub
- URL: https://github.com/nelsongillo/huffman
- Owner: nelsongillo
- License: mit
- Created: 2021-01-29T20:54:09.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-30T12:48:15.000Z (about 5 years ago)
- Last Synced: 2025-01-13T02:21:07.377Z (about 1 year ago)
- Topics: huffman-coding, rust-lang
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Huffman
[Huffman Coding](https://en.wikipedia.org/wiki/Huffman_coding) implementation
## Build
```shell
git clone https://github.com/einzigartigerName/huffman.git
cd huffman
cargo build --release
```
## Usage
To encode:
```shell
huffman encode [FILES]
```
To decode:
```shell
huffman decode [FILES]
```