Skip to content

jordanpenard/LZW_compression

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LZW compression

LZW from Wikipedia

Implementation:

  • 12 bits symboles
  • The dictonary is 4096 deep
  • Dictionary initialised from 0 to 255 by its index

Decompressor

Reading from stdin, writing to stdout.

make decompressor
./lzw_decompressor < compressed_file > uncompressed_file

Compressor

Reading from stdin, writing to stdout.

make compressor
./lzw_compressor < uncompressed_file > compressed_file

About

Decompressor for LZW, 12 bits symboles

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published