Skip to content

Files

Latest commit

08c2245 · Nov 29, 2022

History

History
This branch is 805 commits behind TheAlgorithms/Python:master.

compression

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 28, 2020
Nov 11, 2021
Sep 28, 2020
Oct 13, 2022
Nov 29, 2022
Oct 26, 2021
Oct 12, 2022
Oct 16, 2022
Oct 2, 2022

Compression

Data compression is everywhere, you need it to store data without taking too much space. Either the compression lose some data (then we talk about lossy compression, such as .jpg) or it does not (and then it is lossless compression, such as .png)

Lossless compression is mainly used for archive purpose as it allow storing data without losing information about the file archived. On the other hand, lossy compression is used for transfer of file where quality isn't necessarily what is required (i.e: images on Twitter).