Thuc notes © 2022

Series 'software development'

GZIP is a lossless compression and decompression method. it supports the compression and decompression of a data stream to produce another data stream. It is based on Deflate that combines of LZ77 and Huffman coding
Deflate is a lossless streaming compression/decompression algorithm. It’s used widely in GZIP and PNG. Deflate is a combination of LZ77 and Huffman coding algorithm to compress data.
The Huffman coding is an algorithm that is used for lossless data compression, such as gzip or PNG image format.
The jump table is a method to transfer program control to another code block using a table of branch or jump instructions.
Provide common retry strategies and patterns such as fibonacci, exponential, linear, polynomial
1 of 1