Difference between revisions of "ParaCode"

From CDOT Wiki
Jump to: navigation, search
(Project: Data Compress)
(Project: Data Compress)
Line 8: Line 8:
 
== Progress ==
 
== Progress ==
 
=== Assignment 1 ===
 
=== Assignment 1 ===
==== Project: Data Compress ====
+
==== Project: LZW Compress ====
  
''' Introduction: '''\n
+
''' Introduction: '''
Basically it is a project to compress file written by c++. Here is the link of source code and more details:  https://codereview.stackexchange.com/questions/86543/simple-lzw-compression-algorithm
+
 
 +
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
  
 
=== Assignment 2 ===
 
=== Assignment 2 ===
 
=== Assignment 3 ===
 
=== Assignment 3 ===

Revision as of 20:06, 22 February 2018


GPU610/DPS915 | Student List | Group and Project Index | Student Resources | Glossary

Project Name Goes here

Team Members

  1. Qiliang Chen
  2. Xuan Dinh Truong

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

Assignment 2

Assignment 3