Module huffman

Source
Expand description

Traits and implementations for reading or writing Huffman codes from or to a stream.

Structsยง

WriteHuffmanTree
A compiled Huffman tree for use with the write_huffman method. Returned by compiled_write_tree.

Enumsยง

FinalHuffmanTree ๐Ÿ”’
HuffmanTreeError
An error type during Huffman tree compilation.
ReadHuffmanTree
A compiled Huffman tree element for use with the read_huffman method. Returned by compile_read_tree.
WipHuffmanTree ๐Ÿ”’

Functionsยง

compile_queue ๐Ÿ”’
compile_read_tree
Given a vector of symbol/code pairs, compiles a Huffman tree for reading.
compile_write_tree
Given a vector of symbol/code pairs, compiles a Huffman tree for writing.