Skip to content

Commit 2b705f0

Browse files
authored
Update README.md
1 parent 5b9c2eb commit 2b705f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Run-Length Encoding (RLE) is one of the oldest algorithms for data-compression a
33
It compresses by looking at the data for repetitions of the same character in a row and storing the amount and the respective character as target-data.
44
Unfortunately, it only compresses within strict and special cases. Outside of these cases, it increases the data-size, even doubles the size in worst cases compared to the original, unprocessed data
55

6-
![RLE_encode](https://iq.opengenus.org/content/images/2020/04/rleimg--1-.png)
6+
>>![RLE_encode](https://iq.opengenus.org/content/images/2020/04/rleimg--1-.png)
77
88
In order to implement this algorithm, the following steps should be considered:
99

0 commit comments

Comments
 (0)