Lab Assignment 3 Solution

$35.00 $29.00

Goals: Understanding of Huffman code trees. Understanding of the five steps for developing a dynamic programming solution. Requirements: Use C to implement order-preserving Huffman coding – using the dynamic programming formulation described in Notes 7.C. The input is 1) a positive integer n and 2) a sequence of n doubles giving the probabilities for symbols…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

Goals:

  1. Understanding of Huffman code trees.

  1. Understanding of the five steps for developing a dynamic programming solution.

Requirements:

  1. Use C to implement order-preserving Huffman coding – using the dynamic programming formulation described in Notes 7.C.

The input is 1) a positive integer n and 2) a sequence of n doubles giving the probabilities for symbols in an ordered character set. To simplify output, the character set will be referenced numerically as 0 . . . n – 1.

Your program should output 1) the optimal order-preserving Huffman code tree and 2) the bit code

assigned to each symbol and the expected bits per symbols

i

lengthi probi based on the generated

code tree and the input probabilities.

  1. Submit your C program on Canvas by 10:45 am (section 004) or 1:45 pm (section 003) on October 24. Comments at the beginning of the source file should include: your name, your ID number, and the command used to compile your code on Omega (5 point penalty for non-compliance).

Getting Started:

  1. Be sure to understand ordinary (greedy) Huffman codes and the dynamic programming solution for the optimal matrix multiplication ordering problem first.

  1. The code for filling in the cost matrix will be very similar to optimal matrix multiplication ordering. You are not required to include the cost matrix in your output.

  1. Outputting the optimal order-preserving Huffman code tree is just like outputting the tree for the optimal matrix multiplication ordering.

  1. Determining the bit string for each character requires navigating a path down the tree stored within the cost matrix. Going left gives a 0, going right gives a 1. (Recursion is not needed.)

Lab Assignment 3 Solution
$35.00 $29.00