Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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
image text in transcribed
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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL Crash Course A Hands On Introduction To Database Development

Authors: Rick Silva

1st Edition

1718503008, 978-1718503007

More Books

Students also viewed these Databases questions

Question

why is outsourcing intresting

Answered: 1 week ago

Question

Provide examples of KPIs in Human Capital Management.

Answered: 1 week ago

Question

What are OLAP Cubes?

Answered: 1 week ago