0
8.8kviews
What is huffman coding? Construct the huffman Tree and determine the code for each symbol in the sentence "Engineering"
1 Answer
| written 7.2 years ago by | modified 7.2 years ago by |
Huffman algorithm or Huffman coding is an entropy encoding algorithm.
It is used widely for data compression (like Winzip Compression-Winzip doesn’t use it but!)
Huffman coding is used in JPEG compression.
The key idea behind Huffman coding is to encode the most common characters using shorter strings of bits than …