Skip to content

Releases: darth-donut/LZ78

LZ78 compression

28 Jan 03:39
Compare
Choose a tag to compare

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)

25 Jan 11:02
Compare
Choose a tag to compare

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.