Class DeltaZigzagBinaryPacking

java.lang.Object
me.lemire.integercompression.DeltaZigzagBinaryPacking
All Implemented Interfaces:
IntegerCODEC

public final class DeltaZigzagBinaryPacking extends Object implements IntegerCODEC
BinaryPacking with Delta+Zigzag Encoding. It encodes integers in blocks of 128 integers. For arrays containing an arbitrary number of integers, you should use it in conjunction with another CODEC:
IntegerCODEC ic = new Composition(new DeltaZigzagBinaryPacking(),
                      new DeltaZigzagVariableByte()).
Author:
MURAOKA Taro http://github.com/koron