Description:
The deflation algorithm used by gzip (also zip and zlib) is a variation of
LZ77 (Lempel-Ziv 1977, see reference below). It finds duplicated strings in
the input data. The second occurrence of a string is replaced by a
pointer to the previous string, in the form of a pair (distance,
length). Distances are limited to 32K bytes, and lengths are limited
to 258 bytes. When a string does not occur anywhere in the previous
32K bytes, it is emitted as a sequence of literal bytes. (In this
description, `string must be taken as an arbitrary sequence of bytes,
and is not restricted to printable characters.)
-The deflation algorithm used by gzip (also zip and zlib) is a variation of LZ77 (Lempel - Ziv 1977. see reference below). It finds duplicated Stri stayed in the input data. The second occurrence of a string is replaced by a pointer to the previous s tring, in the form of a pair (distance, length). Distances are limited to 32K bytes, and lengths are limited to 258 bytes. When a Stri ng does not occur anywhere in the previous 32K by tes, it is emitted as a sequence of literal bytes. (In this description, `string must be taken as an arbitrary sequence o f bytes, and is not restricted to printable characters. ) Platform: |
Size: 5143890 |
Author:MCU2000 |
Hits:
Description: 本程序采用 Lempel-Ziv 压缩算法,代码是根据 Markus Franz Xaver Johannes Oberhumer 的 LZO 改写而成-the procedures used Lempel - Ziv compression algorithm, code is based on Franz Xaver Markus Johannes Oberhumer rewritten from the LZO Platform: |
Size: 2551 |
Author:杨勇 |
Hits:
Description: My (so called) HiP compression algorithm as console mode
utility. It s a hybrid of Lempel-Ziv 77 and Adaptive Huffman
encoding (Huffman + LZ77 ZIP = HiP) with a word prefix hash
algorithm etc.-My (so called) a compression algorithm HiP 's console mode utility. It's a hybrid of Lempel-Z iv 77 and Adaptive Huffman encoding (Huffman LZ HiP ZIP = 77) with a word prefix hash algorithm et c. Platform: |
Size: 53517 |
Author:郭春阳 |
Hits:
Description: 本程序采用 Lempel-Ziv 压缩算法,代码是根据 Markus Franz Xaver Johannes Oberhumer 的 LZO 改写而成-the procedures used Lempel- Ziv compression algorithm, code is based on Franz Xaver Markus Johannes Oberhumer rewritten from the LZO Platform: |
Size: 2048 |
Author:杨勇 |
Hits:
Description: This scheme is initiated by Ziv and Lempel [1]. A slightly modified version is described by Storer and Szymanski [2]. An implementation using a binary tree is proposed by Bell [3]. The algorithm is quite simple: Keep a ring buffer, which initially contains "space" characters only. Read several letters from the file to the buffer. Then search the buffer for the longest string that matches the letters just read, and send its length and position in the buffer. Platform: |
Size: 3072 |
Author:冰冰 |
Hits:
Description:
The deflation algorithm used by gzip (also zip and zlib) is a variation of
LZ77 (Lempel-Ziv 1977, see reference below). It finds duplicated strings in
the input data. The second occurrence of a string is replaced by a
pointer to the previous string, in the form of a pair (distance,
length). Distances are limited to 32K bytes, and lengths are limited
to 258 bytes. When a string does not occur anywhere in the previous
32K bytes, it is emitted as a sequence of literal bytes. (In this
description, `string must be taken as an arbitrary sequence of bytes,
and is not restricted to printable characters.)
-The deflation algorithm used by gzip (also zip and zlib) is a variation of LZ77 (Lempel- Ziv 1977. see reference below). It finds duplicated Stri stayed in the input data. The second occurrence of a string is replaced by a pointer to the previous s tring, in the form of a pair (distance, length). Distances are limited to 32K bytes, and lengths are limited to 258 bytes. When a Stri ng does not occur anywhere in the previous 32K by tes, it is emitted as a sequence of literal bytes. (In this description, `string must be taken as an arbitrary sequence o f bytes, and is not restricted to printable characters. ) Platform: |
Size: 5143552 |
Author:MCU2000 |
Hits:
Description: My (so called) HiP compression algorithm as console mode
utility. It s a hybrid of Lempel-Ziv 77 and Adaptive Huffman
encoding (Huffman + LZ77 ZIP = HiP) with a word prefix hash
algorithm etc.-My (so called) a compression algorithm HiP 's console mode utility. It's a hybrid of Lempel-Z iv 77 and Adaptive Huffman encoding (Huffman LZ HiP ZIP = 77) with a word prefix hash algorithm et c. Platform: |
Size: 53248 |
Author:郭春阳 |
Hits:
Description: 读入一段数据,采用lempel-Ziv算法进行信源编码-Read into the section of data, using lempel-Ziv source coding algorithm Platform: |
Size: 2048 |
Author:luqi |
Hits:
Description: The Lempel Ziv Algorithm with examples about directonary coding and more-The Lempel Ziv Algorithm with examples about directonary coding and more... Platform: |
Size: 394240 |
Author:infothem |
Hits:
Description: Very simple class to ZIP and UNZIP files (Streams actually). Based on Ziv-Lempel basic algorithm.
Simple.. not fast nor really "compressive" :).
Create(A) a ZIP by passing in the stream A you want as source/destination. Call Add(B) to compress a stream B into A. Call Extract(B) to decompress stream A into B. Platform: |
Size: 3072 |
Author:David |
Hits:
Description: The deflation algorithm used by zip and gzip is a variation of LZ77
(Lempel-Ziv 1977, see reference below). It finds duplicated strings in
the input data. The second occurrence of a string is replaced by a
pointer to the previous string, in the form of a pair (distance,
length). Distances are limited to 32K bytes, and lengths are limited
to 258 bytes. When a string does not occur anywhere in the previous
32K bytes, it is emitted as a sequence of literal bytes. (In this
description, string must be taken as an arbitrary sequence of bytes,
and is not restricted to printable characters.)
-gzip compress and decompress
The deflation algorithm used by zip and gzip is a variation of LZ77
(Lempel-Ziv 1977, see reference below). It finds duplicated strings in
the input data. The second occurrence of a string is replaced by a
pointer to the previous string, in the form of a pair (distance,
length). Distances are limited to 32K bytes, and lengths are limited
to 258 bytes. When a string does not occur anywhere in the previous
32K bytes, it is emitted as a sequence of literal bytes. (In this
description, string must be taken as an arbitrary sequence of bytes,
and is not restricted to printable characters.)
Platform: |
Size: 299008 |
Author:Dennis |
Hits: