Huffman compression and decompression implemented in rust
Go to file
2022-10-25 15:12:56 +02:00
.github/workflows Create rust.yml 2022-10-25 15:12:56 +02:00
assets add benchmark 2022-10-25 15:07:09 +02:00
benches add benchmark 2022-10-25 15:07:09 +02:00
src add benchmark 2022-10-25 15:07:09 +02:00
.gitignore initial commit 2022-10-25 13:08:26 +02:00
Cargo.toml add benchmark 2022-10-25 15:07:09 +02:00
LICENSE-APACHE Create LICENSE-APACHE 2022-10-25 13:14:20 +02:00
LICENSE-MIT Create LICENSE-MIT 2022-10-25 13:14:59 +02:00
README.md Create README.md 2022-10-25 13:13:48 +02:00

rustyman

Huffman compression and decompression implemented in rust

use rustyman::Huffman;

let payload = b"hello from the other side of the river";
    
let huffman = Huffman::new_from_data(payload);
let compressed = huffman.compress(payload);
let decompressed = huffman.decompress(&compressed);

assert!(compressed.len() < payload.len());
assert_eq!(&payload[..], decompressed)