ParaCode
GPU610/DPS915 | Student List | Group and Project Index | Student Resources | Glossary
Contents
Project Name Goes here
Team Members
Progress
Assignment 1
Project: LZW Compress
Introduction:
LZW stand for "Lempel–Ziv–Welch". It is a universal lossless data compression algorithm which is widely use in compressing software. It is widely used in image compress and Unix file compress. Here is a project example of LZW compressing written by c++. Here's the link for more details: http://www.cplusplus.com/articles/iL18T05o/#Version5
Compile
g++ -Wall -Wextra -pedantic -std=c++11 -O3 lzw_v5.cpp -o lzw_vX