Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 276 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 276 Bytes

HuffmanTreeDecoder

A decoder for Huffman Tree.

The decoder reads two input files - encoded message and code table. The decoder first constructs the decode tree using the code table. Then the decoded message can be generated from the encoded message using the decode tree.