SwagatSBhuyan/HuffmanCode
Huffman Encoding uses Greedy Algorithm which assigns bitstreams to data packets for streaming securely. The code assigned to one character is not the prefix of code assigned to any other character. This is how Huffman Coding makes sure that there is no ambiguity when decoding the generated bitstream.
C++