Huffman’s algorithm


Huffman’s algorithmMathworldPlanetmath is a method for building an extended binary treeMathworldPlanetmath with a minimum weighted path length from a set of given weights. Initially construct a forest of singleton trees, one associated with each weight. If there are at least two trees, choose the two trees with the least weight associated with their roots and replace them with a new tree, constructed by creating a root node whose weight is the sum of the weights of the roots of the two trees removed, and setting the two trees just removed as this new node’s children. This process is repeated until the forest consists of one tree.

Pseudocode

Huffman(W, n)
Input: A list W of n (positive) weights.
Output: An extended binary tree T with weights
   taken from W that gives the minimum weighted path length.
Procedure:
 Create list F from singleton trees formed from elements of W
WHILE (F has more than one element) DO
  Find T1, T2 in F that have minimum values associated with their roots
  Construct new tree T by creating a new node and setting T1 and T2 as its children
  Let the sum of the values associated with the roots of T1 and T2 be associated with the root of T
  Add T to F
OD
Huffman := tree stored in F

Example

Let us work through an example for the set of weights {1,2,3,3,4}. In these intermediate steps we will display the temporary weights assigned by the algorithm in the circled nodes. Initially our forest is

During the first step, the two trees with weights 1 and 2 are merged, to create a new tree with a root of weight 3.

We now have three trees with weights of 3 at their roots. It does not matter which two we choose to merge. Let us choose the tree we just created and one of the singleton nodes of weight 3.

Now our two minimum trees are the two singleton nodes of weights 3 and 4. We will combine these to form a new tree of weight 7.

Finally we merge our last two remaining trees.

The result is an extended binary tree of minimum weighted path length 29. In the following diagram each circled node is marked with its weighted path length.

Analysis

Each iteration of Huffman’s algorithm reduces the size of the problem by 1, and so there are exactly n iterations. The ith iteration consists of locating the two minimum values in a list of length n-i+1. This is a linear operationMathworldPlanetmath, and so Huffman’s algorithm clearly has a time complexity of 𝒪(n2).

However, it would be faster to sort the weights initially, and then maintain two lists. The first list consists of weights that have not yet been combined, and the second list consists of trees that have been formed by combining weights. This initial ordering is obtained at a cost of 𝒪(nlogn). Obtaining the minimum two trees at each step then consists of two comparisons (compare the heads of the two lists, and then compare the larger to the item after the smaller). The ordering of the second list can be maintained cheaply by using a binary searchMathworldPlanetmath to insert new elements. Since at step i there are i-1 elements in the second list, 𝒪(logi) comparisons are needed for insertion. Over the entire duration of the algorithm the cost of keeping this list sorted is 𝒪(nlogn). Therefore the overall time complexity of Huffman’s algorithm is 𝒪(nlogn).

In terms of space complexity, the algorithm constructs a complete binary treeMathworldPlanetmathPlanetmath with exactly n leaves. Therefore the output can only have at most 2n-1 nodes. Thus Huffman’s algorithm requires linear space.

Title Huffman’s algorithm
Canonical name HuffmansAlgorithm
Date of creation 2013-03-22 12:32:17
Last modified on 2013-03-22 12:32:17
Owner mps (409)
Last modified by mps (409)
Numerical id 9
Author mps (409)
Entry type Algorithm
Classification msc 68P30
Related topic MinimumWeightedPathLength
Related topic HuffmanCoding