Difference between revisions of "ParaCode"
(→Project: LZW Compress) |
(→Project: LZW Compress) |
||
Line 13: | Line 13: | ||
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. | 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: | + | Here is a project example of LZW compressing written by c++. Here's the link for more details: https://codereview.stackexchange.com/questions/86543/simple-lzw-compression-algorithm |
− | ''' To Compile: ''' | + | ''' To Compile:(Linux) ''' |
− | g++ | + | g++ -std=c++0x lzw.c -o lzw |
+ | |||
+ | ''' To Execute Projet ''' | ||
+ | * Compress file: | ||
+ | ./lzw -c file.txt | ||
+ | |||
+ | * Decopress file: | ||
+ | ./lzw -d file.txt | ||
=== Assignment 2 === | === Assignment 2 === | ||
=== Assignment 3 === | === Assignment 3 === |
Revision as of 19:15, 22 February 2018
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: https://codereview.stackexchange.com/questions/86543/simple-lzw-compression-algorithm
To Compile:(Linux)
g++ -std=c++0x lzw.c -o lzw
To Execute Projet
- Compress file:
./lzw -c file.txt
- Decopress file:
./lzw -d file.txt