• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
June 28, 2022 |105.5K Views
Huffman Coding
Description
Discussion

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.

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

Read More