Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple file compression in C

I'm new to programming with C, and I need somewhere that I can read up on file compression in C. I only need a simple recognised method. An example would help but mostly somewhere I can read to understand.

like image 229
user3555512 Avatar asked Apr 23 '14 21:04

user3555512


1 Answers

maybe a good starting point is RLE which is extremely simple but not so trivial to implement. Check it out: http://en.wikipedia.org/wiki/Run-length_encoding

like image 152
Gianluca Ghettini Avatar answered Oct 19 '22 03:10

Gianluca Ghettini