Elias code or Elias gamma code is a universal code encoding positive integers developed by Peter Elias. It is used most commonly when coding integers whose upper bound cannot be determined beforehand.
To code a number x âÂÂ¥ 1:
An equivalent way to express the same process:
To represent a number , Elias gamma (ó) uses bits.
The code begins (the implied probability distribution for the code is added for clarity):
To decode an Elias gamma-coded integer:
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 <code>00000101</code>, while the ó-encoding variable-bit version would be <code>00 1 01</code>, needing 3 bits less. On the contrary, bigger values, like 254 stored in fixed 8-bit size, would be <code>11111110</code> while the ó-encoding variable-bit version would be <code>0000000 1 1111110</code>, needing 7 extra bits.
Gamma coding is a building block in the Elias delta code.
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:<br/>
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.