#huffman #string #codec #algorithm #tree #decode #encode

应用 huffman-compression

用于编码和解码 Huffman 字符串的包

3 个版本

0.1.2 2024 年 3 月 30 日
0.1.1 2024 年 3 月 29 日
0.1.0 2024 年 3 月 29 日

#119 in 压缩

MIT/Apache

14KB
199

Rust 中 Huffman 树实现

这是我对 Huffman 树算法的粗糙实现。

使用文本示例

fn main() {
    let text = "Hello world!".to_string();

    let huffman_tree = HuffmanTree::new(text.clone());

    let encoded_message = huffman_tree.encode(&text);
    let decoded_message = huffman_tree.decode(&encoded_message);

    println!("Compressed: {}", encoded_message);
    println!("Uncompressed: {}", decoded_message);

    println!("Huffman Codes: {:#?}", huffman_tree.get_code_table());
}

使用 Huffman 表示例

fn main() {
    let huffman_table = HashMap::from([
        ('o', String::from("100")),
        ('l', String::from("01")),
        ('e', String::from("111")),
        (' ', String::from("0000")),
        ('!', String::from("110")),
        ('w', String::from("101")),
        ('d', String::from("0011")),
        ('H', String::from("0010")),
        ('r', String::from("0001")),
    ]);

    let huffman_tree = HuffmanTree::new_decoder(huffman_table);

    let encoded_message = huffman_tree.encode("Hello world!");
    let decoded_message = huffman_tree.decode("0010111010110000001011000001010011110");

    println!("Compressed: {}", encoded_message);
    println!("Uncompressed: {}", decoded_message);
}

无运行时依赖