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

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

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]
```