Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Huffman coding

From Wikipedia, the free encyclopedia
(Redirected fromHuffman tree)
Not to be confused withHamming code.
Technique to compress data

Huffman tree generated from the exact frequencies of the text "this is an example of a huffman tree". Encoding the sentence with this code requires 135 (or 147) bits, as opposed to 288 (or 180) bits if 36 characters of 8 (or 5) bits were used (This assumes that the code tree structure is known to the decoder and thus does not need to be counted as part of the transmitted information). The frequencies and codes of each character are shown in the accompanying table.
CharFreqCode
space7111
a4010
e4000
f31101
h21010
i21000
m20111
n20010
s21011
t20110
l111001
o100110
p110011
r111000
u100111
x110010

Incomputer science andinformation theory, aHuffman code is a particular type of optimalprefix code that is commonly used forlossless data compression. The process of finding or using such a code isHuffman coding, an algorithm developed byDavid A. Huffman while he was aSc.D. student atMIT, and published in the 1952 paper "A Method for the Construction of Minimum-Redundancy Codes".[1]

The output from Huffman's algorithm can be viewed as avariable-length code table for encoding a source symbol (such as a character in a file). The algorithm derives this table from the estimated probability or frequency of occurrence (weight) for each possible value of the source symbol. As in otherentropy encoding methods, more common symbols are generally represented using fewer bits than less common symbols. Huffman's method can be efficiently implemented, finding a code in timelinear to the number of input weights if these weights are sorted.[2] However, although optimal among methods encoding symbols separately, Huffman codingis not always optimal among all compression methods – it is replaced witharithmetic coding[3] orasymmetric numeral systems[4] if a better compression ratio is required.

History

[edit]

In 1951,David A. Huffman and hisMITinformation theory classmates were given the choice of a term paper or a finalexam. The professor,Robert M. Fano, assigned aterm paper on the problem of finding the most efficient binary code. Huffman, unable to prove any codes were the most efficient, was about to give up and start studying for the final when he hit upon the idea of using a frequency-sortedbinary tree and quickly proved this method the most efficient.[5]

In doing so, Huffman outdid Fano, who had worked withClaude Shannon to develop a similar code. Building the tree from the bottom up guaranteed optimality, unlike the top-down approach ofShannon–Fano coding.

Terminology

[edit]

Huffman coding uses a specific method for choosing the representation for each symbol, resulting in aprefix code (sometimes called "prefix-free codes", that is, the bit string representing some particular symbol is never a prefix of the bit string representing any other symbol). Huffman coding is such a widespread method for creating prefix codes that the term "Huffman code" is widely used as a synonym for "prefix code" even when such a code is not produced by Huffman's algorithm.

Problem definition

[edit]
This articleneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "Huffman coding" – news ·newspapers ·books ·scholar ·JSTOR
(December 2021) (Learn how and when to remove this message)
Constructing a Huffman tree

Informal description

[edit]
Given
A set of symbolsS{\displaystyle S} and for each symbolxS{\displaystyle x\in S}, the frequencyfx{\displaystyle f_{x}} representing the fraction of symbols in the text that are equal tox{\displaystyle x}.[6]
Find
Aprefix-free binary code (a set of codewords) with minimumexpected codeword length (equivalently, a tree with minimumweighted path length from the root).

Formalized description

[edit]

Input.
AlphabetA=(a1,a2,,an){\displaystyle A=(a_{1},a_{2},\dots ,a_{n})}, which is the symbol alphabet of sizen{\displaystyle n}.
TupleW=(w1,w2,,wn){\displaystyle W=(w_{1},w_{2},\dots ,w_{n})}, which is the tuple of the (positive) symbol weights (usually proportional to probabilities), i.e.wi=weight(ai),i{1,2,,n}{\displaystyle w_{i}=\operatorname {weight} \left(a_{i}\right),\,i\in \{1,2,\dots ,n\}}.

Output.
CodeC(W)=(c1,c2,,cn){\displaystyle C\left(W\right)=(c_{1},c_{2},\dots ,c_{n})}, which is the tuple of (binary) codewords, whereci{\displaystyle c_{i}} is the codeword forai,i{1,2,,n}{\displaystyle a_{i},\,i\in \{1,2,\dots ,n\}}.

Goal.
LetL(C(W))=i=1nwilength(ci){\textstyle L(C(W))=\sum _{i=1}^{n}w_{i}\operatorname {length} (c_{i})} be the weighted path length of codeC{\displaystyle C}. Condition:L(C(W))L(T(W)){\displaystyle L(C(W))\leq L(T(W))} for any codeT(W){\displaystyle T(W)}.

Example

[edit]

We give an example of the result of Huffman coding for a code with five characters and given weights. We will not verify that it minimizesL over all codes, but we will computeL and compare it to theShannon entropyH of the given set of weights; the result is nearly optimal.

Input (A,W)Symbol (ai)abcdeSum
Weights (wi)0.100.150.300.160.29= 1
OutputCCodewords (ci)010011110010 
Codeword length (in bits)
(i)
33222
Contribution to weighted path length
(iwi )
0.300.450.600.320.58L(C) = 2.25
OptimalityProbability budget
(2i)
1/81/81/41/41/4= 1.00
Information content (in bits)
(−log2wi) ≈
3.322.741.742.641.79 
Contribution to entropy
(wi log2wi)
0.3320.4110.5210.4230.518H(A) = 2.205

For any code that isbiunique, meaning that the code isuniquely decodeable, the sum of the probability budgets across all symbols is always less than or equal to one. In this example, the sum is strictly equal to one; as a result, the code is termed acomplete code. If this is not the case, one can always derive an equivalent code by adding extra symbols (with associated null probabilities), to make the code complete while keeping itbiunique.

As defined byShannon (1948), the information contenth (in bits) of each symbolai with non-null probability is

h(ai)=log21wi.{\displaystyle h(a_{i})=\log _{2}{1 \over w_{i}}.}

TheentropyH (in bits) is the weighted sum, across all symbolsai with non-zero probabilitywi, of the information content of each symbol:

H(A)=wi>0wih(ai)=wi>0wilog21wi=wi>0wilog2wi.{\displaystyle H(A)=\sum _{w_{i}>0}w_{i}h(a_{i})=\sum _{w_{i}>0}w_{i}\log _{2}{1 \over w_{i}}=-\sum _{w_{i}>0}w_{i}\log _{2}w_{i}.}

(Note: A symbol with zero probability has zero contribution to the entropy, sincelimw0+wlog2w=0{\displaystyle \lim _{w\to 0^{+}}w\log _{2}w=0}. So for simplicity, symbols with zero probability can be left out of the formula above.)

As a consequence ofShannon's source coding theorem, the entropy is a measure of the smallest codeword length that is theoretically possible for the given alphabet with associated weights. In this example, the weighted average codeword length is 2.25 bits per symbol, only slightly larger than the calculated entropy of 2.205 bits per symbol. So not only is this code optimal in the sense that no other feasible code performs better, but it is very close to the theoretical limit established by Shannon.

In general, a Huffman code need not be unique. Thus the set of Huffman codes for a given probability distribution is a non-empty subset of the codes minimizingL(C){\displaystyle L(C)} for that probability distribution. (However, for each minimizing codeword length assignment, there exists at least one Huffman code with those lengths.)

Basic technique

[edit]

Compression

[edit]
Visualisation of the use of Huffman coding to encode the message "A_DEAD_DAD_​CEDED_A_BAD_​BABE_A_BEADED_​ABACA_BED". In steps 2 to 6, the letters are sorted by increasing frequency, and the least frequent two at each step are combined and reinserted into the list, and a partial tree is constructed. The final tree in step 6 is traversed to generate the dictionary in step 7. Step 8 uses it to encode the message.
A source generates 4 different symbols{a1,a2,a3,a4}{\displaystyle \{a_{1},a_{2},a_{3},a_{4}\}} with probability{0.4;0.35;0.2;0.05}{\displaystyle \{0.4;0.35;0.2;0.05\}}. A binary tree is generated from left to right taking the two least probable symbols and putting them together to form another equivalent symbol having a probability that equals the sum of the two symbols. The process is repeated until there is just one symbol. The tree can then be read backwards, from right to left, assigning different bits to different branches. The final Huffman code is:
SymbolCode
a10
a210
a3110
a4111
The standard way to represent a signal made of 4 symbols is by using 2 bits/symbol, but theentropy of the source is 1.74 bits/symbol. If this Huffman code is used to represent the signal, then the average length is lowered to 1.85 bits/symbol; it is still far from the theoretical limit because the probabilities of the symbols are different from negative powers of two.

The technique works by creating abinary tree of nodes. These can be stored in a regulararray, the size of which depends on the number of symbols,n{\displaystyle n}. A node can be either aleaf node or aninternal node. Initially, all nodes are leaf nodes, which contain thesymbol itself, theweight (frequency of appearance) of the symbol and optionally, a link to aparent node which makes it easy to read the code (in reverse) starting from a leaf node. Internal nodes contain aweight, links totwo child nodes and an optional link to aparent node. As a common convention, bit '0' represents following the left child and bit '1' represents following the right child. A finished tree has up ton{\displaystyle n} leaf nodes andn1{\displaystyle n-1} internal nodes. A Huffman tree that omits unused symbols produces the most optimal code lengths.

The process begins with the leaf nodes containing the probabilities of the symbol they represent. Then, the process takes the two nodes with smallest probability, and creates a new internal node having these two nodes as children. The weight of the new node is set to the sum of the weight of the children. We then apply the process again, on the new internal node and on the remaining nodes (i.e., we exclude the two leaf nodes), we repeat this process until only one node remains, which is the root of the Huffman tree.

The simplest construction algorithm uses apriority queue where the node with lowest probability is given highest priority:

  1. Create a leaf node for each symbol and add it to the priority queue.
  2. While there is more than one node in the queue:
    1. Remove the two nodes of highest priority (lowest probability) from the queue
    2. Create a new internal node with these two nodes as children and with probability equal to the sum of the two nodes' probabilities.
    3. Add the new node to the queue.
  3. The remaining node is the root node and the tree is complete.

Since efficient priority queue data structures require O(logn) time per insertion, and a tree withn leaves has 2n−1 nodes, this algorithm operates in O(n logn) time, wheren is the number of symbols.

If the symbols are sorted by probability, there is alinear-time (O(n)) method to create a Huffman tree using twoqueues, the first one containing the initial weights (along with pointers to the associated leaves), and combined weights (along with pointers to the trees) being put in the back of the second queue. This assures that the lowest weight is always kept at the front of one of the two queues:

  1. Start with as many leaves as there are symbols.
  2. Enqueue all leaf nodes into the first queue (by probability in increasing order so that the least likely item is in the head of the queue).
  3. While there is more than one node in the queues:
    1. Dequeue the two nodes with the lowest weight by examining the fronts of both queues.
    2. Create a new internal node, with the two just-removed nodes as children (either node can be either child) and the sum of their weights as the new weight.
    3. Enqueue the new node into the rear of the second queue.
  4. The remaining node is the root node; the tree has now been generated.

Once the Huffman tree has been generated, it is traversed to generate a dictionary which maps the symbols to binary codes as follows:

  1. Start with current node set to the root.
  2. If node is not a leaf node, label the edge to the left child as 0 and the edge to the right child as 1. Repeat the process at both the left child and the right child.

The final encoding of any symbol is then read by a concatenation of the labels on the edges along the path from the root node to the symbol.

In many cases, time complexity is not very important in the choice of algorithm here, sincen here is the number of symbols in the alphabet, which is typically a very small number (compared to the length of the message to be encoded); whereas complexity analysis concerns the behavior whenn grows to be very large.

It is generally beneficial to minimize the variance of codeword length. For example, a communication buffer receiving Huffman-encoded data may need to be larger to deal with especially long symbols if the tree is especially unbalanced. To minimize variance, simply break ties between queues by choosing the item in the first queue. This modification will retain the mathematical optimality of the Huffman coding while both minimizing variance and minimizing the length of the longest character code.

Decompression

[edit]

Generally speaking, the process of decompression is simply a matter of translating the stream of prefix codes to individual byte values, usually by traversing the Huffman tree node by node as each bit is read from the input stream (reaching a leaf node necessarily terminates the search for that particular byte value). Before this can take place, however, the Huffman tree must be somehow reconstructed. In the simplest case, where character frequencies are fairly predictable, the tree can be preconstructed (and even statistically adjusted on each compression cycle) and thus reused every time, at the expense of at least some measure of compression efficiency. Otherwise, the information to reconstruct the tree must be sent a priori. A naive approach might be to prepend the frequency count of each character to the compression stream. Unfortunately, the overhead in such a case could amount to several kilobytes, so this method has little practical use. If the data is compressed usingcanonical encoding, the compression model can be precisely reconstructed with justB2B{\displaystyle B\cdot 2^{B}} bits of information (whereB is the number of bits per symbol). Another method is to simply prepend the Huffman tree, bit by bit, to the output stream. For example, assuming that the value of 0 represents a parent node and 1 a leaf node, whenever the latter is encountered the tree building routine simply reads the next 8 bits to determine the character value of that particular leaf. The process continues recursively until the last leaf node is reached; at that point, the Huffman tree will thus be faithfully reconstructed. The overhead using such a method ranges from roughly 2 to 320 bytes (assuming an 8-bit alphabet). Many other techniques are possible as well. In any case, since the compressed data can include unused "trailing bits" the decompressor must be able to determine when to stop producing output. This can be accomplished by either transmitting the length of the decompressed data along with the compression model or by defining a special code symbol to signify the end of input (the latter method can adversely affect code length optimality, however).

Main properties

[edit]

The probabilities used can be generic ones for the application domain that are based on average experience, or they can be the actual frequencies found in the text being compressed.This requires that afrequency table must be stored with the compressed text. See the Decompression section above for more information about the various techniques employed for this purpose.

Optimality

[edit]
See also:Arithmetic coding § Huffman coding

Huffman's original algorithm is optimal for a symbol-by-symbol coding with a known input probability distribution, i.e., separately encoding unrelated symbols in such a data stream. However, it is not optimal when the symbol-by-symbol restriction is dropped, or when theprobability mass functions are unknown. Also, if symbols are notindependent and identically distributed, a single code may be insufficient for optimality. Other methods such asarithmetic coding often have better compression capability.

Although both aforementioned methods can combine an arbitrary number of symbols for more efficient coding and generally adapt to the actual input statistics, arithmetic coding does so without significantly increasing its computational or algorithmic complexities (though the simplest version is slower and more complex than Huffman coding). Such flexibility is especially useful when input probabilities are not precisely known or vary significantly within the stream. However, Huffman coding is usually faster and arithmetic coding was historically a subject of some concern overpatent issues. Thus many technologies have historically avoided arithmetic coding in favor of Huffman and other prefix coding techniques. As of mid-2010, the most commonly used techniques for this alternative to Huffman coding have passed into the public domain as the early patents have expired.

For a set of symbols with a uniform probability distribution and a number of members which is apower of two, Huffman coding is equivalent to simple binaryblock encoding, e.g.,ASCII coding. This reflects the fact that compression is not possible with such an input, no matter what the compression method, i.e., doing nothing to the data is the optimal thing to do.

Huffman coding is optimal among all methods in any case where each input symbol is a known independent and identically distributed random variable having a probability that isdyadic. Prefix codes, and thus Huffman coding in particular, tend to have inefficiency on small alphabets, where probabilities often fall between these optimal (dyadic) points. The worst case for Huffman coding can happen when the probability of the most likely symbol far exceeds 2−1 = 0.5, making the upper limit of inefficiency unbounded.

There are two related approaches for getting around this particular inefficiency while still using Huffman coding. Combining a fixed number of symbols together ("blocking") often increases (and never decreases) compression. As the size of the block approaches infinity, Huffman coding theoretically approaches the entropy limit, i.e., optimal compression.[7] However, blocking arbitrarily large groups of symbols is impractical, as the complexity of a Huffman code is linear in the number of possibilities to be encoded, a number that is exponential in the size of a block. This limits the amount of blocking that is done in practice.

A practical alternative, in widespread use, isrun-length encoding. This technique adds one step in advance of entropy coding, specifically counting (runs) of repeated symbols, which are then encoded. For the simple case ofBernoulli processes,Golomb coding is optimal among prefix codes for coding run length, a fact proved via the techniques of Huffman coding.[8] A similar approach is taken by fax machines usingmodified Huffman coding. However, run-length coding is not as adaptable to as many input types as other compression technologies.

Variations

[edit]

Many variations of Huffman coding exist,[9] some of which use a Huffman-like algorithm, and others of which find optimal prefix codes (while, for example, putting different restrictions on the output). Note that, in the latter case, the method need not be Huffman-like, and, indeed, need not even bepolynomial time.

n-ary Huffman coding

[edit]

Then-ary Huffman algorithm uses the {0, 1,...,n − 1} alphabet to encode message and build ann-ary tree. This approach was considered by Huffman in his original paper. The same algorithm applies as for binary (n=2{\displaystyle n=2}) codes, except that then least probable symbols are taken together, instead of just the 2 least probable. Note that forn greater than 2, not all sets of source words can properly form ann-ary tree for Huffman coding. In these cases, additional 0-probability place holders must be added. This is because the tree must form ann to 1 contractor;[clarification needed] for binary coding, this is a 2 to 1 contractor, and any sized set can form such a contractor. If the number of source words is congruent to 1 modulon − 1, then the set of source words will form a proper Huffman tree.

Adaptive Huffman coding

[edit]

A variation calledadaptive Huffman coding involves calculating the probabilities dynamically based on recent actual frequencies in the sequence of source symbols, and changing the coding tree structure to match the updated probability estimates. It is used rarely in practice, since the cost of updating the tree makes it slower than optimizedadaptive arithmetic coding, which is more flexible and has better compression.

Huffman template algorithm

[edit]

Most often, the weights used in implementations of Huffman coding represent numeric probabilities, but the algorithm given above does not require this; it requires only that the weights form atotally orderedcommutative monoid, meaning a way to order weights and to add them. TheHuffman template algorithm enables one to use any kind of weights (costs, frequencies, pairs of weights, non-numerical weights) and one of many combining methods (not just addition). Such algorithms can solve other minimization problems, such as minimizingmaxi[wi+length(ci)]{\displaystyle \max _{i}\left[w_{i}+\mathrm {length} \left(c_{i}\right)\right]}, a problem first applied to circuit design.

Length-limited Huffman coding/minimum variance Huffman coding

[edit]

Length-limited Huffman coding is a variant where the goal is still to achieve a minimum weighted path length, but there is an additional restriction that the length of each codeword must be less than a given constant. Thepackage-merge algorithm solves this problem with a simplegreedy approach very similar to that used by Huffman's algorithm. Its time complexity isO(nL){\displaystyle O(nL)}, whereL{\displaystyle L} is the maximum length of a codeword. No algorithm is known to solve this problem inO(n){\displaystyle O(n)} orO(nlogn){\displaystyle O(n\log n)} time, unlike the presorted and unsorted conventional Huffman problems, respectively.

Huffman coding with unequal letter costs

[edit]

In the standard Huffman coding problem, it is assumed that each symbol in the set that the code words are constructed from has an equal cost to transmit: a code word whose length isN digits will always have a cost ofN, no matter how many of those digits are 0s, how many are 1s, etc. When working under this assumption, minimizing the total cost of the message and minimizing the total number of digits are the same thing.

Huffman coding with unequal letter costs is the generalization without this assumption: the letters of the encoding alphabet may have non-uniform lengths, due to characteristics of the transmission medium. An example is the encoding alphabet ofMorse code, where a 'dash' takes longer to send than a 'dot', and therefore the cost of a dash in transmission time is higher. The goal is still to minimize the weighted average codeword length, but it is no longer sufficient just to minimize the number of symbols used by the message. No algorithm is known to solve this in the same manner or with the same efficiency as conventional Huffman coding, though it has been solved byRichard M. Karp[10] whose solution has been refined for the case of integer costs by Mordecai J. Golin.[11]

Optimal alphabetic binary trees (Hu–Tucker coding)

[edit]

In the standard Huffman coding problem, it is assumed that any codeword can correspond to any input symbol. In the alphabetic version, the alphabetic order of inputs and outputs must be identical. Thus, for example,A={a,b,c}{\displaystyle A=\left\{a,b,c\right\}} could not be assigned codeH(A,C)={00,1,01}{\displaystyle H\left(A,C\right)=\left\{00,1,01\right\}}, but instead should be assigned eitherH(A,C)={00,01,1}{\displaystyle H\left(A,C\right)=\left\{00,01,1\right\}} orH(A,C)={0,10,11}{\displaystyle H\left(A,C\right)=\left\{0,10,11\right\}}. This is also known as theHu–Tucker problem, afterT. C. Hu andAlan Tucker, the authors of the paper presenting the firstO(nlogn){\displaystyle O(n\log n)}-time solution to this optimal binary alphabetic problem,[12] which has some similarities to Huffman algorithm, but is not a variation of this algorithm. A later method, theGarsia–Wachs algorithm ofAdriano Garsia andMichelle L. Wachs (1977), uses simpler logic to perform the same comparisons in the same total time bound. These optimal alphabetic binary trees are often used asbinary search trees.[13]

The canonical Huffman code

[edit]
Main article:Canonical Huffman code

If weights corresponding to the alphabetically ordered inputs are in numerical order, the Huffman code has the same lengths as the optimal alphabetic code, which can be found from calculating these lengths, rendering Hu–Tucker coding unnecessary. The code resulting from numerically (re-)ordered input is sometimes called thecanonical Huffman code and is often the code used in practice, due to ease of encoding/decoding. The technique for finding this code is sometimes calledHuffman–Shannon–Fano coding, since it is optimal like Huffman coding, but alphabetic in weight probability, likeShannon–Fano coding. The Huffman–Shannon–Fano code corresponding to the example is{000,001,01,10,11}{\displaystyle \{000,001,01,10,11\}}, which, having the same codeword lengths as the original solution, is also optimal. But incanonical Huffman code, the result is{110,111,00,01,10}{\displaystyle \{110,111,00,01,10\}}.

Applications

[edit]

Arithmetic coding and Huffman coding produce equivalent results — achieving entropy — when every symbol has a probability of the form 1/2k. In other circumstances, arithmetic coding can offer better compression than Huffman coding because — intuitively — its "code words" can have effectively non-integer bit lengths, whereas code words in prefix codes such as Huffman codes can only have an integer number of bits. Therefore, a code word of lengthk only optimally matches a symbol of probability 1/2k and other probabilities are not represented optimally; whereas the code word length in arithmetic coding can be made to exactly match the true probability of the symbol. This difference is especially striking for small alphabet sizes.[citation needed]

Prefix codes nevertheless remain in wide use because of their simplicity, high speed, andlack of patent coverage. They are often used as a "back-end" to other compression methods.Deflate (PKZIP's algorithm) and multimediacodecs such asJPEG andMP3 have a front-end model andquantization followed by the use of prefix codes; these are often called "Huffman codes" even though most applications use pre-defined variable-length codes rather than codes designed using Huffman's algorithm.

References

[edit]
Wikimedia Commons has media related toHuffman coding.
  1. ^Huffman, D. (1952)."A Method for the Construction of Minimum-Redundancy Codes"(PDF).Proceedings of the IRE.40 (9):1098–1101.doi:10.1109/JRPROC.1952.273898.
  2. ^Van Leeuwen, Jan (1976)."On the construction of Huffman trees"(PDF).ICALP:382–410. Retrieved2014-02-20.
  3. ^Ze-Nian Li; Mark S. Drew; Jiangchuan Liu (2014-04-09).Fundamentals of Multimedia. Springer Science & Business Media.ISBN 978-3-319-05290-8.
  4. ^J. Duda, K. Tahboub, N. J. Gadil, E. J. Delp,The use of asymmetric numeral systems as an accurate replacement for Huffman coding, Picture Coding Symposium, 2015.
  5. ^Huffman, Ken (1991)."Profile: David A. Huffman: Encoding the "Neatness" of Ones and Zeroes".Scientific American:54–58.
  6. ^Kleinberg, Jon; Tardos, Eva (2005-03-16).Algorithm Design (1 ed.).Pearson Education. p. 165.ISBN 9780321295354. Retrieved2025-01-26.
  7. ^Gribov, Alexander (2017-04-10). "Optimal Compression of a Polyline with Segments and Arcs".arXiv:1604.07476 [cs.CG].
  8. ^Gallager, R.G.; van Voorhis, D.C. (1975). "Optimal source codes for geometrically distributed integer alphabets".IEEE Transactions on Information Theory.21 (2):228–230.doi:10.1109/TIT.1975.1055357.
  9. ^Abrahams, J. (1997-06-11). "Code and parse trees for lossless source encoding". Written at Arlington, VA, USA.Proceedings. Compression and Complexity of SEQUENCES 1997 (Cat. No.97TB100171). Division of Mathematics, Computer & Information Sciences,Office of Naval Research (ONR). Salerno:IEEE. pp. 145–171.CiteSeerX 10.1.1.589.4726.doi:10.1109/SEQUEN.1997.666911.ISBN 0-8186-8132-2.S2CID 124587565.
  10. ^Karp, Richard M. (1961-01-31)."Minimum-redundancy coding for the discrete noiseless channel".IRE Transactions on Information Theory.7 (1). IEEE:27–38.doi:10.1109/TIT.1961.1057615.
  11. ^Golin, Mordekai J. (January 1998)."A Dynamic Programming Algorithm for Constructing Optimal Prefix-Free Codes with Unequal Letter Costs"(PDF).IEEE Transactions on Information Theory.44 (5) (published 1998-09-01):1770–1781.doi:10.1109/18.705558.S2CID 2265146. Retrieved2024-09-10.
  12. ^Hu, T. C.;Tucker, A. C. (1971). "Optimal Computer Search Trees and Variable-Length Alphabetical Codes".SIAM Journal on Applied Mathematics.21 (4): 514.doi:10.1137/0121057.JSTOR 2099603.
  13. ^Knuth, Donald E. (1998), "Algorithm G (Garsia–Wachs algorithm for optimum binary trees)",The Art of Computer Programming, Vol. 3: Sorting and Searching (2nd ed.), Addison–Wesley, pp. 451–453. See also History and bibliography, pp. 453–454.

Bibliography

[edit]

External links

[edit]
Lossless
Entropy type
Dictionary type
Other types
Hybrid
Lossy
Transform type
Predictive type
Audio
Concepts
Codec parts
Image
Concepts
Methods
Video
Concepts
Codec parts
Theory
Community
People
Retrieved from "https://en.wikipedia.org/w/index.php?title=Huffman_coding&oldid=1280136531"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp