phucnm / compress

A simple compressor implementing LZW for educational purpose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

compress

A simple compressor implementing LZW for educational purpose. This program is compliant to compress tool on Linux which means that we can use compress to decompress files generated from this program.

Usage

  • Build code with make
  • Compress a file by ./uvcompress < inputfile > inputfile.z
  • Optional: Decompress the above ouput with compress by compresss -d < inputfile.z > inputfile

About

A simple compressor implementing LZW for educational purpose


Languages

Language:C++ 96.3%Language:Makefile 3.7%