Skip to content

Przemek1337/RLE-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rle-algorithm

The Run-Length Encoding (RLE) algorithm is a simple form of data compression in which consecutive occurrences of the same data value (a run) are replaced by just one instance of the data value and a count of its occurrences. For example, the string "AAAABBBCCDAA" would be encoded as "4A3B2C1D2A" using RLE, significantly reducing the size if the runs are long. This method is most effective on data that contains many such runs, making it well-suited for compressing graphics, in which the same color often occurs in many consecutive pixels.

Usage

  1. Build and run the program
  2. Select the option that interests you

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors