Shannon coding
Lossless data compression technique
In the field of data compression, Shannon coding, named after its creator, Claude Shannon, is a lossless data compression technique for constructing a prefix code based on a set of symbols and their probabilities (estimated or measured). It is suboptimal in the sense that it does not achieve the lowest possible expected code word length like Huffman coding does, and never better than but sometimes equal to the Shannon-Fano coding (Fano's method).
The method was the first of its type, the technique was used to prove Shannon's noiseless coding theorem in his 1948 article "A Mathematical Theory of Communication", and is therefore a centerpiece of the information age.
Shannon-Fano coding methods gave rise to the field of information theory and without its contributions, the world would not have any of the many successors; for example Huffman coding, or arithmetic coding. Much of our day-to-day lives are significantly influenced by digital data and this would not be possible without Shannon-Fano coding and the ongoing evolution of its methods.
In Shannon coding, the symbols are arranged in order from most probable to least probable, and assigned codewords by taking the first bits from the binary expansions of the cumulative probabilities
Here
denotes the ceiling function (which rounds
up to the next integer value).
01Example
In the table below is an example of creating a code scheme for symbols a1 to a6. The value of li gives the number of bits used to represent the symbol ai. The last column is the bit code of each symbol.
| i | pi | li | Previous value in binary | Codeword for ai | |
|---|---|---|---|---|---|
| 1 | 0.36 | 2 | 0.0 | 0.0000 | 00 |
| 2 | 0.18 | 3 | 0.36 | 0.0101... | 010 |
| 3 | 0.18 | 3 | 0.54 | 0.1000... | 100 |
| 4 | 0.12 | 4 | 0.72 | 0.1011... | 1011 |
| 5 | 0.09 | 4 | 0.84 | 0.1101... | 1101 |
| 6 | 0.07 | 4 | 0.93 | 0.1110... | 1110 |
Sources and credits
This article is adapted from the Wikipedia article “Shannon coding”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.