MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / lz77.py

File lz77.py

data_compression/lz77.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1"""
2LZ77 compression algorithm
3- lossless data compression published in papers by Abraham Lempel and Jacob Ziv in 1977
4- also known as LZ1 or sliding-window compression

Callers

nothing calls this directly

Calls 3

LZ77CompressorClass · 0.85
compressMethod · 0.45
decompressMethod · 0.45

Tested by

no test coverage detected