User Tools

Site Tools


chess:programming:huffman:example

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
chess:programming:huffman:example [2021/10/29 13:41] peterchess:programming:huffman:example [2021/10/29 13:56] (current) – [Stepping through the code] peter
Line 199: Line 199:
     * It is extended as needed to accommodate the values of internal tree nodes.     * It is extended as needed to accommodate the values of internal tree nodes.
   * **C** is the set of characters represented as leaf tree nodes.   * **C** is the set of characters represented as leaf tree nodes.
-  * **Q* is a priority queue of tree nodes where we can quickly extract the minimum element;+  * **Q** is a priority queue of tree nodes where we can quickly extract the minimum element;
     * this can be done with a heap where the heap property is reversed.     * this can be done with a heap where the heap property is reversed.
     * We build the tree in a bottom up manner, starting with the individual characters and ending up with the root of the tree as the only element of the queue.     * We build the tree in a bottom up manner, starting with the individual characters and ending up with the root of the tree as the only element of the queue.
Line 212: Line 212:
 ---- ----
  
-==== Stepping through the code ====+==== Stepping through the code using the Huffman algorithm ====
  
-Let's go through the above example using Huffman's algorithm.  +Here are the contents of **Q** after each step through the for loop:
- +
-Here are the contents of Q after each step through the for loop:+
  
 Initially, all nodes are leaf nodes. Initially, all nodes are leaf nodes.
Line 235: Line 233:
                  4                  4
 </code> </code>
 +
 +----
  
 Then the next two with least value, Q has 6 elements: Then the next two with least value, Q has 6 elements:
Line 244: Line 244:
                                 4   5                                 4   5
 </code> </code>
 +
 +----
  
 Now the two nodes with least values are the two trees we just made, and Q has 5 elements: Now the two nodes with least values are the two trees we just made, and Q has 5 elements:
Line 258: Line 260:
 <code> <code>
  
-Q has 4 elements:+---- 
 + 
 +The next two with least value, Q has 4 elements:
  
 <code> <code>
Line 271: Line 275:
 </code> </code>
  
-Three items left:+---- 
 + 
 +The next two with least value, three items left:
  
 <code> <code>
Line 288: Line 294:
 </code> </code>
  
-Two big trees left:+---- 
 + 
 +The next two with least value, two big trees left:
  
 <code> <code>
chess/programming/huffman/example.1635514882.txt.gz · Last modified: 2021/10/29 13:41 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki