Question

In: Computer Science

Question 1: Provide a detailed analysis of Huffman's algorithm, taking care to state any assumptions. (a)...

Question 1: Provide a detailed analysis of Huffman's algorithm, taking care to state any assumptions.


(a) What problem is solved by Huffman coding?
(b) What key property of the input does Huffman coding exploit?
(c) Write pseudo-code for constructing a Huffman tree from a table of character frequencies.
(d) Analyze the complexity of this algorithm.
(e) Write C struct definitions for the data structures used by the algorithm.

Question 2: Name and briefly describe a good algorithm for solving each of the following problems:

(a) searching in a sorted linked list
(b) sorting an array
(c) finding a pattern in a string
(d) minimal spanning tree of a weighted connected graph
(e) Hamiltonian circuit of a graph

Question 3: Suppose that a particular divide-and-conquer algorithm solves a problem of size n by splitting it into three problems of size n/3. Suppose that it must perform two basic operations in order to perform this split. Suppose it performs no basic operations when n = 1. Write down the recurrence relation for the time taken by this algorithm, then solve the recurrence using a method of your choice, showing all steps.

Solutions

Expert Solution

1)Huffman code is a particular type of optimal prefix code that is commonly used for lossless data compression.The output from the algorithm can be viewed as a variable-length code table for encoding a source symbol (such as a character in a file). This table is derived by the algorithm from the estimated probability or frequency of occurrence (weight) for each possible value of the source symbo. Although optimal among methods encoding symbols separately, Huffman coding is not always optimal among all compression methods - it is replaced with arithmetic coding or asymmetric numeral systems if better compression ratio is required.

a)

Huffman coding is the base for all data compression and encoding schemes.It follows a Greedy approach and is is a famous algorithm used for lossless data encoding. It deals with generating minimum length prefix-free binary codes.It uses variable-length encoding scheme for assigning binary codes to characters depending on how frequently they occur in the given text.The character which occurs most frequently gets the smallest code.The character which occurs least frequently gets the largest code.For encoding symbols/characters that appear more frequently in the input string shorter binary codes are generated.The binary codes generated are prefix-free.The main property of the algorithm is that it does not work with different denominations.

b)

The input with the following properties are exploited by the Huffman coding:

input with set of symbols to be transmitted or stored along with their frequencies/ probabilities/ weights

Alphabet , which is the symbol alphabet of size .
Tuple , which is the tuple of the (positive) symbol weights (usually proportional to probabilities), i.e. .

c)

int bits; TreeNode current = root; // root of tree, constructed from header data while (true)

{

int bits = input.readBits(1); if (bits == -1)

{

throw new HuffException("bad input, no PSEUDO_EOF");

}

else

{

// use the zero/one value of the bit read

// to traverse Huffman coding tree

// if a leaf is reached, decode the character and print UNLESS

// the character is pseudo-EOF, then decompression done

if (bits == 0) current = current.left; // read a 0, go left

else // read a 1, go right

if (current.left == null && current.right == null)

{

// at leaf! if (leaf-node stores pseudo-eof char)

break; // out of loop

else

{

output.writeBits(... leaf-node value);

current = root; // start back after leaf

}

}

}

}

d)

The time complexity analysis of Huffman Coding is for extractMin( ) is called 2 x (n-1) times if there are n nodes.As extractMin( ) calls minHeapify( ), it takes O(logn) time.

Thus time complexity of Huffman Coding becomes O(nlogn).

n, here is the number of unique characters in the given text.


Related Solutions

This is a Microbiology essay question. Please provide detailed answers. Taking antibiotics for viral infections is...
This is a Microbiology essay question. Please provide detailed answers. Taking antibiotics for viral infections is not effective. a. Explain why taking antibiotics will not stop a viral infection. b. In addition to not clearing the infection, how can this be harmful for a patient in the immediate future? c. Explain how, with the inadvertent help of the patient’s microbiome, repeated unnecessary antibiotic use can result in antibiotic resistant infections.
Subject: macroeconomics Question;Monopolies 1. State and explain the macroeconomic problem . Provide detailed macroeconomic research consisting...
Subject: macroeconomics Question;Monopolies 1. State and explain the macroeconomic problem . Provide detailed macroeconomic research consisting , Example ; increase the federal minimum wage? What macroeconomic problems does increase the federal minimum wage introduce? 2. What are positive and negative externalities,if any 3. What is the aggregate supply and aggregate demand concerns regarding the topic? Who will be impacted regarding the macroeconomic event? Example; the poor, the wealthy. 4. What are your recommendations ( effective/creative) Provide at least three 5....
Provide a detailed analysis of Kant's Critique of Practical reason
Provide a detailed analysis of Kant's Critique of Practical reason
Provide an example of dissemination of evidence that influenced health policy. Provide a detailed analysis of...
Provide an example of dissemination of evidence that influenced health policy. Provide a detailed analysis of the evidence presented and the impact to our public health system.
Question 1: Why is it important to provide detailed information about the methods used in an...
Question 1: Why is it important to provide detailed information about the methods used in an experiment? Question 2: Convert 0.75 lb to mg? For the calculation show all the steps in the calculation and final answer.
n this unit we learned to conduct a retirement needs analysis taking into account various assumptions...
n this unit we learned to conduct a retirement needs analysis taking into account various assumptions such as inflation rate, retirement period, life expectancy, income sources, and other variables, and determine financial needs during the accumulation and retirement period. Lets extend the discussion by examining the practical implications of these concepts. TIAA-CREF has an excellent site that provides a consider- able amount of information on retirement planning and retirement options. Visit the site at tiaa-cref.org click on the What We...
Question 3 What types of project require the least detailed and most detailed analysis in the...
Question 3 What types of project require the least detailed and most detailed analysis in the capital budgeting process? Question 4 What is cost of capital and why it is important?
In light of the above case study and relevant theory, provide a detailed analysis on the...
In light of the above case study and relevant theory, provide a detailed analysis on the major steps that you would recommend to DHL for a comprehensive supply chain network design process.
Please, use this forum to provide a cost benefit analysis of taking this class in an...
Please, use this forum to provide a cost benefit analysis of taking this class in an accelerated online format. What are some of the benefits of taking this course online? What are some benefits of taking this course in an accelerated format? (half of a semester time). What were the costs? This is for my online (macro) econ class discussion. please help! this is a make or break. thanks!
Select a Private Higher Education Institution of your choice. QUESTION 1: Provide a detailed explanation with...
Select a Private Higher Education Institution of your choice. QUESTION 1: Provide a detailed explanation with examples of the market/task environment of the institution you selected (20). QUESTION 2: Identify and detail the activities and initiatives of the following functional areas of management in the private higher education institution you chose:  The Human Resources Function  The Marketing Function  Purchasing Function  Operations function (20) QUESTION 3 Provide a detailed discussion of FIVE (5) management challenges faced by...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT