Question: Huffman Coding in C++ thank you. Questions and input structure The input consists of 6 integers, one per each line. Each integer represents the frequency
Huffman Coding in C++ thank you.

Questions and input structure The input consists of 6 integers, one per each line. Each integer represents the frequency of characters, A, B, C, D, E, and F, in this order. The test cases have been built so that while building trees it never happens that the same frequency appear:s twice. Then, the decision about which tree goes to the left and which one goes to the right is always straightforward, and the final tree should be unique Examples of input and output Input 15 1.1 2 ?. Output A:0 B: 10 C: 110 D: 11100 E: 11101 Questions and input structure The input consists of 6 integers, one per each line. Each integer represents the frequency of characters, A, B, C, D, E, and F, in this order. The test cases have been built so that while building trees it never happens that the same frequency appear:s twice. Then, the decision about which tree goes to the left and which one goes to the right is always straightforward, and the final tree should be unique Examples of input and output Input 15 1.1 2 ?. Output A:0 B: 10 C: 110 D: 11100 E: 11101
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
