C# Implementation of LZ77 Algorithm.
- Go to folder with LZ77.csproj file.
- Open CMD.
- Type:
dotnet build -c Release
- compress text files
- decompress *.lz77 files
- measure process time
- Compress file and measure time:
LZ77.exe -c <filename> -t
- Decompress file:
LZ77.exe -d <filename.lz77> -o <outputFileName>
- Print help:
LZ77.exe -h