Implementation of several methods for data transforming and compression.
These methods are used in Bzip2 and are described in the 1994 paper by Burrows and Wheeler.
Compression (with decompression having reverse order)
- Burrows-Wheeler Transform
- Move-To-Front Transform
- Run-Length Encoding
- Huffman Encoding (using Multiple Huffman tables)
Lossless File Compression with bzip2 https://github.com/Arthod/Bzip2-in-Java/blob/main/report/project.pdf
https://www.hpl.hp.com/techreports/Compaq-DEC/SRC-RR-124.pdf https://www.sourceware.org/bzip2/manual/manual.pdf