Concept
Run-Length Encoding
Run-Length Encoding (RLE) is a simple form of data compression where consecutive identical elements are stored as a single data value and count, effectively reducing the size of repetitive data. It is most effective on data with many repeated elements and is commonly used in image compression formats like TIFF and BMP, though it is less effective on data without such patterns.
Relevant Degrees