Releases: darth-donut/LZ78
Releases · darth-donut/LZ78
LZ78 compression
Updates
Unlike the previous version, the latest version uses bits as the smallest unit, hence, significantly improving the compression of small files (and also large files).
Naive implementation for LZ78 compression (smallest unit in byte)
Version 1.0.0
Bits are rounded up to the nearest byte when compressing, hence producing sub-par compression when dealing with small files with little repetitions. Educational purposes only.