Run Length Encoding

1 revision
#11 week ago
+5
Migrated from pages table
+Run Length Encoding (RLE) is a simple form of [Data Compression](/wiki/data_compression) that reduces repeated sequences of identical data. It works by storing contiguous runs of the same value as a count and the value itself, proving efficient for data with many such repetitions, particularly in [Bitmap](/wiki/bitmap) images or simple text.
+## See also
+- [Lossless Compression](/wiki/lossless_compression)
+- [Huffman Coding](/wiki/huffman_coding)
+- [Compression Algorithm](/wiki/compression_algorithm)