Elias γ {\displaystyle \gamma } code or Elias gamma code is a universal code encoding positive integers developed by Peter Elias.: 197, 199  It is used most commonly when coding integers whose upper bound cannot be determined beforehand.

Encoding

To code a number x ≥ 1:

  1. Let N = log 2 x {\displaystyle N=\lfloor \log _{2}x\rfloor } be the highest power of 2 it contains, so 2Nx < 2N 1.
  2. Write out N {\displaystyle N} zero bits, then
  3. Append the binary form of x {\displaystyle x} , an ( N 1 ) {\displaystyle (N 1)} -bit binary number.

An equivalent way to express the same process:

  1. Encode N {\displaystyle N} in unary; that is, as N {\displaystyle N} zeroes followed by a one.
  2. Append the remaining N {\displaystyle N} binary digits of x {\displaystyle x} to this representation of N {\displaystyle N} .

To represent a number x {\displaystyle x} , Elias gamma (γ) uses 2 log 2 ( x ) 1 {\displaystyle 2\lfloor \log _{2}(x)\rfloor 1} bits.: 199 

The code begins (the implied probability distribution for the code is added for clarity):

Decoding

To decode an Elias gamma-coded integer:

  1. Read and count 0s from the stream until you reach the first 1. Call this count of zeroes N.
  2. Considering the one that was reached to be the first digit of the integer, with a value of 2N, read the remaining N digits of the integer.

Uses

Gamma coding is used in applications where the largest encoded value is not known ahead of time, or to compress data in which small values are much more frequent than large values.

Gamma coding can be more size efficient in those situations. For example, note that, in the table above, if a fixed 8-bit size is chosen to store a small number like the number 5, the resulting binary would be 00000101, while the γ-encoding variable-bit version would be 00 1 01, needing 3 bits less. On the contrary, bigger values, like 254 stored in fixed 8-bit size, would be 11111110 while the γ-encoding variable-bit version would be 0000000 1 1111110, needing 7 extra bits.

Gamma coding is a building block in the Elias delta code.

Generalizations

Gamma coding does not code zero or negative integers. One way of handling zero is to add 1 before coding and then subtract 1 after decoding. Another way is to prefix each nonzero code with a 1 and then code zero as a single 0.

One way to code all integers is to set up a bijection, mapping integers (0, −1, 1, −2, 2, −3, 3, ...) to (1, 2, 3, 4, 5, 6, 7, ...) before coding. In software, this is most easily done by mapping non-negative inputs to odd outputs, and negative inputs to even outputs, so the least-significant bit becomes an inverted sign bit:
{ x 2 x 1 w h e n   x 0 x 2 x w h e n   x < 0 {\displaystyle {\begin{cases}x\mapsto 2x 1&\mathrm {when~} x\geq 0\\x\mapsto -2x&\mathrm {when~} x<0\\\end{cases}}}

Exponential-Golomb coding generalizes the gamma code to integers with a "flatter" power-law distribution, just as Golomb coding generalizes the unary code. It involves dividing the number by a positive divisor, commonly a power of 2, writing the gamma code for one more than the quotient, and writing out the remainder in an ordinary binary code.

See also

  • Elias delta (δ) coding – universal code encoding positive integersPages displaying wikidata descriptions as a fallback
  • Elias omega (ω) coding – Universal code encoding positive integers
  • Posit (number format) – Variant of floating-point numbers in computersPages displaying short descriptions of redirect targets

References

Further reading

  • Sayood, Khalid (2003). "Levenstein and Elias Gamma Codes". Lossless Compression Handbook. Elsevier. ISBN 978-0-12-620861-0.

Elias gamma coding Semantic Scholar

Elias gamma coding Semantic Scholar

Elias gamma coding Semantic Scholar

Elias omega coding Semantic Scholar

Example of Elias Gamma (EG) Coding Download Table