Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 474 Bytes

File metadata and controls

14 lines (14 loc) · 474 Bytes

Huffman Coding

Write your data into file 'input.txt'.

To Compile: make

To Encode: make encode
Encodes the data of file 'input.txt'.
Character code table is written in file 'encoding.txt' as '<Char Ascii><space><Code>'.

To Decode: make decode
Decodes the data of file 'encodedOutput.txt'.

To Clean: make clean
Deletes the extra file which were creted while compiling, encoding and decoding.