Open main menu

CDOT Wiki β

Changes

ParaCode

107 bytes added, 20:15, 22 February 2018
Project: LZW 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: httphttps://wwwcodereview.cplusplusstackexchange.com/articlesquestions/iL18T05o86543/#Version5simple-lzw-compression-algorithm
''' To Compile: (Linux) ''' g++ -Wall -Wextra -pedantic -std=c++11 0x lzw.c -O3 lzw_v5o lzw ''' To Execute Projet '''* Compress file: .cpp /lzw -o lzw_v5c file.txt * Decopress file: ./lzw -d file.txt
=== Assignment 2 ===
=== Assignment 3 ===
167
edits