Question: algorithm Problem 2 (20 points) 1. [15 points] Consider a DAG which has already been topologically sorted, so edges go from left to right. In

algorithm
algorithm Problem 2 (20 points) 1. [15 points] Consider a DAG which

Problem 2 (20 points) 1. [15 points] Consider a DAG which has already been topologically sorted, so edges go from left to right. In the lecture notes, we have seen a Dynamic Programming algorithm that finds the shortest path in a DAG where edges have weights associated with them. Now consider the following greedy strategies. Show that all of them fail to find the shortest path from node 1 to node n by giving appropriate small examples. You should also explain what is the value of the optimal solution compared to the greedy one. Greedy strategy Set i=1 While inn, Pick the edge (i, i) with the largest i Set in and repeat Return the weight of the path constructed from node 1 to node n. Greedy strategy 2 Set i=1 While in Pick the edge (1.1) with the smallest weight Set 1-y and repeat Return the weight of the path constructed from node 1 to node n. Greedy strategy 3 Set i-1 While iin, Pick the edge (1, 1) with the smallest ratio weight/G-1) Set 1-) and repeat Return the weight of the path constructed from node i to node n. 2. 15 points] Construct the Huffman tree and show the encoding of each letter based on the frequencies below: Letter Frequency 25 10 13 6 20 14 5 3 4 If you have to encode a file consisting of 10 characters, how much space would the Huffman encoding require? What about the fixed size encoding

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!