4个版本
0.0.4 | 2023年2月16日 |
---|---|
0.0.3 | 2021年11月16日 |
0.0.2 | 2021年5月12日 |
0.0.1 | 2021年5月12日 |
#631 in 压缩
25KB
420 行
huff-tree-tap
Huffman编码器和解码器库
示例使用
Cargo.toml
[dependencies]
huff_tree_tap = "*" # You can specify a version here if you want
extern crate huff_tree_tap;
use huff_tree_tap::*;
let data: Vec<u8> = "this is a test string!".to_string().into_bytes();
let huffman_data: HuffmanData = huffman_encode(&data);
let encoded_data: Vec<u8> = huffman_data.encoded_data; // The given data encoded
let encoding_map: HashMap<u8,String> = huffman_data.encoding_map; // The encoding map required to decode the data
依赖项
~0.7–1.4MB
~33K SLoC