Puneet Varma (Editor)

Elias delta coding

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Elias delta code is a universal code encoding the positive integers developed by Peter Elias.

Contents

Encoding

To code a number X≥1:

  1. Let N=⌊log2 X⌋ be the highest power of 2 in X, so 2NX < 2N+1.
  2. Let L=⌊log2 N+1⌋ be the highest power of 2 in N+1, so 2LN+1 < 2L+1.
  3. Write L zeros, followed by
  4. the L+1-bit binary representation of N+1, followed by
  5. all but the leading bit (i.e. the last N bits) of X.

An equivalent way to express the same process:

  1. Separate X into the highest power of 2 it contains (2N) and the remaining N binary digits.
  2. Encode N+1 with Elias gamma coding.
  3. Append the remaining N binary digits to this representation of N+1.

To represent a number x , Elias delta uses log 2 ( x ) + 2 log 2 ( log 2 ( x ) + 1 ) + 1 bits.

The code begins, using γ instead of γ :

To decode an Elias delta-coded integer:

  1. Read and count zeros from the stream until you reach the first one. Call this count of zeros L.
  2. Considering the one that was reached to be the first digit of an integer, with a value of 2L, read the remaining L digits of the integer. Call this integer N+1, and subtract one to get N.
  3. Put a one in the first place of our final output, representing the value 2N.
  4. Read and append the following N digits.

Example:

001010011 1. 2 leading zeros in 001 2. read 2 more bits i.e. 00101 3. decode N+1 = 00101 = 5 4. get N = 5 − 1 = 4 remaining bits for the complete code i.e. '0011' 5. encoded number = 24 + 3 = 19

This code can be generalized to zero or negative integers in the same ways described in Elias gamma coding.

Generalizations

Elias delta coding does not code zero or negative integers. One way to code all non negative integers is to add 1 before coding and then subtract 1 after decoding. One way to code all integers is to set up a bijection, mapping integers all integers (0, 1, −1, 2, −2, 3, −3, ...) to strictly positive integers (1, 2, 3, 4, 5, 6, 7, ...) before coding. This bijection can be performed using the "ZigZag" encoding from Protocol Buffers (not to be confused with Zigzag code, nor the JPEG Zig-zag entropy coding).

References

Elias delta coding Wikipedia