zlociu / LZ77.NET

C# implementation of LZ77 compression algorithm.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LZ77.NET

C# Implementation of LZ77 Algorithm.

How to build

  1. Go to folder with LZ77.csproj file.
  2. Open CMD.
  3. Type: dotnet build -c Release

Features

  • compress text files
  • decompress *.lz77 files
  • measure process time

Usage examples (Windows)

  • Compress file and measure time:
    LZ77.exe -c <filename> -t
  • Decompress file:
    LZ77.exe -d <filename.lz77> -o <outputFileName>
  • Print help:
    LZ77.exe -h

About

C# implementation of LZ77 compression algorithm.

License:MIT License


Languages

Language:C# 100.0%