Skip to content

Run-length encoding ( RLE) is a form of lossless data compression in which runs of data (sequences in which the same data value occurs in many consecutive data elements) are stored as a single data value and count, rather than as the original run. This is most useful on data that contains many such runs. I am implementing this using python. One …

Notifications You must be signed in to change notification settings

sudhamshu091/Run-Length-Encoding-and-Decoding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Run-Length-Encoding-and-Decoding

Run-length encoding ( RLE) is a form of lossless data compression in which runs of data (sequences in which the same data value occurs in many consecutive data elements) are stored as a single data value and count, rather than as the original run. This is most useful on data that contains many such runs. I am implementing this using python. One of the easiest algorithms to implement. Just doing it for learning purpose.
Run Length Encoding and Decoding: Wikipedia

About

Run-length encoding ( RLE) is a form of lossless data compression in which runs of data (sequences in which the same data value occurs in many consecutive data elements) are stored as a single data value and count, rather than as the original run. This is most useful on data that contains many such runs. I am implementing this using python. One …

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages