LZ77based
LZ77based refers to compression methods that are derived from or heavily inspired by the LZ77 algorithm, developed by Abraham Lempel and Jacob Ziv in 1977. In LZ77based schemes, data are represented using references to previously seen data within a sliding window. Each reference encodes how far back the match starts (the distance) and how long the match is (the length), often together with a literal symbol when no adequate match exists.
The encoding process typically searches for the longest match of the upcoming input in the current sliding
LZ77based methods encompass a family of techniques and variants. LZSS is a well-known modification that improves
Applications of LZ77based compression include general file compression, data streams, and embedded systems where predictable decoding