Compress and decompress text files using huffman coding in C++
g++ huffman.cpp encode.cpp
./a filename.txt
This will create a file named Encoding.txt
g++ huffman.cpp decode.cpp
./a
This will create the Decoded.txt which contains the contents of the initial file decoded from Encoding.txt