Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionviii [2012/03/06 05:11] – mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionviii [2012/03/06 05:27] (current) – [Implementation and Running Time] mugabej | ||
---|---|---|---|
Line 59: | Line 59: | ||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
- | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | + | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> |
+ | \\ | ||
+ | * The algorithm above is referred to as the //Huffman Algorithm// and the prefix code it produces is termed the //Huffman code// | ||
+ | * This algorithm produces an optimal prefix code | ||
+ | * This algorithm also follows a bottom-up approach as seen: It focuses on the leaves representing the two lowest-frequency letters, and then continues by recursion. | ||
+ | \\ | ||
+ | \\ | ||
+ | ==== Analyzing the Algorithm ==== | ||
+ | |||
+ | * The algorithm is optimal | ||
+ | * ABL(T' | ||
+ | * The Huffman code for a given alphabet achieves the minimum ABL of any prefix code | ||
+ | |||
+ | ==== Implementation and Running Time ==== | ||
+ | |||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | \\ | ||
+ | So overall takes O(nlogn).\\ | ||
+ | \\ | ||
+ | Very intriguing section although its proofs were long. I give it an 8/10. | ||