/Huffman-Coding

A easy and efficient implementation of Huffman Coding compression method

Primary LanguageC

Huffman_Coding

Text Compression Algorithm

Huffman coding is a lossless data compression algorithm. The idea is to assign variable-length codes to input characters, lengths of the assigned codes are based on the frequencies of corresponding characters. The most frequent character gets the smallest code and the least frequent character gets the largest code.