Anonymous ID: 503fae June 23, 2021, 3:06 p.m. No.13966929   🗄️.is 🔗kun

>>13966834

>Huffman coding

 

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.

The variable-length codes assigned to input characters are Prefix Codes, means the codes (bit sequences) are assigned in such a way that 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.

 

https://www.geeksforgeeks.org/huffman-coding-greedy-algo-3/