1) Algorithms: What will be the Huffman code for the letters a,b,c,d,e? - Published on 24 Jun 15
a. 0,10,110,1110,1111
b. 10,011,11,001,010
c. 10,01,0001,100,1010
d. 100,110,001,000,010
Answer
Explanation
|
ANSWER: 0,10,110,1110,1111
Explanation: The probability are ½,1/4, 1/8,1/16,,1/32 So, the Huffman code according to the tree is unique.
|
|