Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1009 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 1009 Bytes

TarsaMatchFinder

Author: Piotr Tarsa

Complete match finder based on radix sort

TarsaMatchFinder outputs matches which can be used in LZ77-style data compression algorithms. Unlike other approaches it doesn't only output longest match per each position. Instead, for every position and match length in specified interval (between min-match and max-match inclusive) it outputs a match (if there's a match for that position and length) with smallest offset.

Documentation
  • Setup + Usage - How to set up the project and start using it
  • Toolchain - Phases needed to produce and validate optimal matches
  • Glossary - Terminology used in this project
  • Formats - Binary (on-disk) formats
  • Backlog - List of to-do items
  • Trees - Sketching plans for using trees