Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 474 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 474 Bytes

Huffman-Decoder

A decoder for Huffman Tree, reading the code table and encoded message and generates original message from the encoded file.

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.

For information on How to make encoder, Kindly visit https://github.com/kanikagupta17/Huffman-Encoder.