青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

我要啦免费统计

1. Compression algorithm (deflate)

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.)

Literals or match lengths are compressed with one Huffman tree, and
match distances are compressed with another tree. The trees are stored
in a compact form at the start of each block. The blocks can have any
size (except that the compressed data for one block must fit in
available memory). A block is terminated when deflate() determines that
it would be useful to start another block with fresh trees. (This is
somewhat similar to the behavior of LZW-based _compress_.)

Duplicated strings are found using a hash table. All input strings of
length 3 are inserted in the hash table. A hash index is computed for
the next 3 bytes. If the hash chain for this index is not empty, all
strings in the chain are compared with the current input string, and
the longest match is selected.

The hash chains are searched starting with the most recent strings, to
favor small distances and thus take advantage of the Huffman encoding.
The hash chains are singly linked. There are no deletions from the
hash chains, the algorithm simply discards matches that are too old.

To avoid a worst-case situation, very long hash chains are arbitrarily
truncated at a certain length, determined by a runtime option (level
parameter of deflateInit). So deflate() does not always find the longest
possible match but generally finds a match which is long enough.

deflate() also defers the selection of matches with a lazy evaluation
mechanism. After a match of length N has been found, deflate() searches for
a longer match at the next input byte. If a longer match is found, the
previous match is truncated to a length of one (thus producing a single
literal byte) and the process of lazy evaluation begins again. Otherwise,
the original match is kept, and the next match search is attempted only N
steps later.

The lazy match evaluation is also subject to a runtime parameter. If
the current match is long enough, deflate() reduces the search for a longer
match, thus speeding up the whole process. If compression ratio is more
important than speed, deflate() attempts a complete second search even if
the first match is already long enough.

The lazy match evaluation is not performed for the fastest compression
modes (level parameter 1 to 3). For these fast modes, new strings
are inserted in the hash table only when no match was found, or
when the match is not too long. This degrades the compression ratio
but saves time since there are both fewer insertions and fewer searches.


2. Decompression algorithm (inflate)

2.1 Introduction

The key question is how to represent a Huffman code (or any prefix code) so
that you can decode fast.  The most important characteristic is that shorter
codes are much more common than longer codes, so pay attention to decoding the
short codes fast, and let the long codes take longer to decode.

inflate() sets up a first level table that covers some number of bits of
input less than the length of longest code.  It gets that many bits from the
stream, and looks it up in the table.  The table will tell if the next
code is that many bits or less and how many, and if it is, it will tell
the value, else it will point to the next level table for which inflate()
grabs more bits and tries to decode a longer code.

How many bits to make the first lookup is a tradeoff between the time it
takes to decode and the time it takes to build the table.  If building the
table took no time (and if you had infinite memory), then there would only
be a first level table to cover all the way to the longest code.  However,
building the table ends up taking a lot longer for more bits since short
codes are replicated many times in such a table.  What inflate() does is
simply to make the number of bits in the first table a variable, and  then
to set that variable for the maximum speed.

For inflate, which has 286 possible codes for the literal/length tree, the size
of the first table is nine bits.  Also the distance trees have 30 possible
values, and the size of the first table is six bits.  Note that for each of
those cases, the table ended up one bit longer than the ``average'' code
length, i.e. the code length of an approximately flat code which would be a
little more than eight bits for 286 symbols and a little less than five bits
for 30 symbols.


2.2 More details on the inflate table lookup

Ok, you want to know what this cleverly obfuscated inflate tree actually
looks like.  You are correct that it's not a Huffman tree.  It is simply a
lookup table for the first, let's say, nine bits of a Huffman symbol.  The
symbol could be as short as one bit or as long as 15 bits.  If a particular
symbol is shorter than nine bits, then that symbol's translation is duplicated
in all those entries that start with that symbol's bits.  For example, if the
symbol is four bits, then it's duplicated 32 times in a nine-bit table.  If a
symbol is nine bits long, it appears in the table once.

If the symbol is longer than nine bits, then that entry in the table points
to another similar table for the remaining bits.  Again, there are duplicated
entries as needed.  The idea is that most of the time the symbol will be short
and there will only be one table look up.  (That's whole idea behind data
compression in the first place.)  For the less frequent long symbols, there
will be two lookups.  If you had a compression method with really long
symbols, you could have as many levels of lookups as is efficient.  For
inflate, two is enough.

So a table entry either points to another table (in which case nine bits in
the above example are gobbled), or it contains the translation for the symbol
and the number of bits to gobble.  Then you start again with the next
ungobbled bit.

You may wonder: why not just have one lookup table for how ever many bits the
longest symbol is?  The reason is that if you do that, you end up spending
more time filling in duplicate symbol entries than you do actually decoding.
At least for deflate's output that generates new trees every several 10's of
kbytes.  You can imagine that filling in a 2^15 entry table for a 15-bit code
would take too long if you're only decoding several thousand symbols.  At the
other extreme, you could make a new table for every bit in the code.  In fact,
that's essentially a Huffman tree.  But then you spend two much time
traversing the tree while decoding, even for short symbols.

So the number of bits for the first lookup table is a trade of the time to
fill out the table vs. the time spent looking at the second level and above of
the table.

Here is an example, scaled down:

The code being decoded, with 10 symbols, from 1 to 6 bits long:

A: 0
B: 10
C: 1100
D: 11010
E: 11011
F: 11100
G: 11101
H: 11110
I: 111110
J: 111111

Let's make the first table three bits long (eight entries):

000: A,1
001: A,1
010: A,1
011: A,1
100: B,2
101: B,2
110: -> table X (gobble 3 bits)
111: -> table Y (gobble 3 bits)

Each entry is what the bits decode as and how many bits that is, i.e. how
many bits to gobble.  Or the entry points to another table, with the number of
bits to gobble implicit in the size of the table.

Table X is two bits long since the longest code starting with 110 is five bits
long:

00: C,1
01: C,1
10: D,2
11: E,2

Table Y is three bits long since the longest code starting with 111 is six
bits long:

000: F,2
001: F,2
010: G,2
011: G,2
100: H,2
101: H,2
110: I,3
111: J,3

So what we have here are three tables with a total of 20 entries that had to
be constructed.  That's compared to 64 entries for a single table.  Or
compared to 16 entries for a Huffman tree (six two entry tables and one four
entry table).  Assuming that the code ideally represents the probability of
the symbols, it takes on the average 1.25 lookups per symbol.  That's compared
to one lookup for the single table, or 1.66 lookups per symbol for the
Huffman tree.

There, I think that gives you a picture of what's going on.  For inflate, the
meaning of a particular symbol is often more than just a letter.  It can be a
byte (a "literal"), or it can be either a length or a distance which
indicates a base value and a number of bits to fetch after the code that is
added to the base value.  Or it might be the special end-of-block code.  The
data structures created in inftrees.c try to encode all that information
compactly in the tables.


Jean-loup Gailly        Mark Adler
jloup@gzip.org          madler@alumni.caltech.edu


References:

[LZ77] Ziv J., Lempel A., ``A Universal Algorithm for Sequential Data
Compression,'' IEEE Transactions on Information Theory, Vol. 23, No. 3,
pp. 337-343.

``DEFLATE Compressed Data Format Specification'' available in
http://www.ietf.org/rfc/rfc1951.txt

posted on 2011-01-21 17:11 閱讀(1424) 評論(0)  編輯 收藏 引用 所屬分類: algorithm
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产伦精品免费视频| 亚洲欧美日韩综合| 欧美一区1区三区3区公司| 亚洲校园激情| 亚洲特色特黄| 午夜久久美女| 久久综合网络一区二区| 免费看的黄色欧美网站| 亚洲国产专区| 亚洲精品在线免费| 亚洲中无吗在线| 欧美一区网站| 牛夜精品久久久久久久99黑人| 欧美福利视频一区| 国产精品久久久免费| 黄色国产精品一区二区三区| 亚洲欧洲午夜| 亚洲免费在线观看视频| 久久影院午夜片一区| 亚洲啪啪91| 小处雏高清一区二区三区| 欧美成人精品一区二区| 欧美天堂亚洲电影院在线观看| 国产欧美日韩视频| 亚洲另类在线一区| 久久五月天婷婷| 一区二区三区精品国产| 免播放器亚洲一区| 国产小视频国产精品| 宅男在线国产精品| 欧美国产精品久久| 欧美一区二区高清| 国产精品高清免费在线观看| 亚洲福利小视频| 欧美在线综合| 亚洲视频在线观看| 欧美激情第一页xxx| 在线日韩欧美视频| 久久久人成影片一区二区三区观看| 亚洲精品激情| 欧美大片在线观看一区二区| 国内精品99| 久久国产精品色婷婷| 在线亚洲电影| 欧美日韩亚洲一区二区三区在线观看 | 久久精视频免费在线久久完整在线看| 欧美日韩另类国产亚洲欧美一级| 国产一区二区三区在线观看网站| 一区二区三区日韩欧美精品| 欧美高清视频| 久久久精品午夜少妇| 国产麻豆综合| 先锋影音一区二区三区| 一本色道婷婷久久欧美| 欧美激情va永久在线播放| 亚洲欧洲综合另类| 欧美激情aⅴ一区二区三区| 久久人人爽人人爽爽久久| 国产午夜精品久久久久久免费视| 亚洲自拍偷拍福利| 亚洲深夜福利网站| 国产精品一区二区三区久久 | 国产日韩一区二区| 先锋亚洲精品| 新片速递亚洲合集欧美合集| 国产老女人精品毛片久久| 久久xxxx精品视频| 欧美综合国产精品久久丁香| 黄色亚洲精品| 欧美风情在线| 欧美经典一区二区三区| 亚洲一区二区三区免费在线观看| 一本色道88久久加勒比精品 | 国产无一区二区| 久久久久9999亚洲精品| 久久国产精品99久久久久久老狼| 国模精品娜娜一二三区| 欧美成人精品不卡视频在线观看| 免费观看不卡av| 一区二区三区 在线观看视| 在线视频亚洲欧美| 国内不卡一区二区三区| 欧美成人官网二区| 欧美日韩极品在线观看一区| 欧美亚洲视频一区二区| 久久视频在线免费观看| 日韩视频一区二区在线观看| 在线视频精品一| 黄色精品一区二区| 亚洲伦理中文字幕| 国模叶桐国产精品一区| 亚洲人成在线播放| 国产亚洲福利社区一区| 亚洲黑丝在线| 国产午夜亚洲精品羞羞网站| 欧美护士18xxxxhd| 国产精品伊人日日| 欧美h视频在线| 久久躁狠狠躁夜夜爽| 亚洲精品视频在线观看网站| 国产精品推荐精品| 女生裸体视频一区二区三区| 欧美日韩综合| 欧美二区不卡| 国产人妖伪娘一区91| 亚洲国产视频一区二区| 国产日韩欧美在线| 亚洲最黄网站| 亚洲黄色在线| 久久九九有精品国产23| 亚洲免费在线| 欧美日本视频在线| 免费亚洲视频| 韩国精品在线观看| 亚洲综合精品一区二区| 一区二区三区四区五区在线| 久久一区二区精品| 欧美永久精品| 国产精品久久久久久久久久尿| 欧美激情精品久久久久久| 国模套图日韩精品一区二区| 亚洲一区日韩| 亚洲欧美日韩一区二区三区在线观看 | 国产精品乱码一区二三区小蝌蚪| 欧美国产日韩一区二区| 精品91久久久久| 欧美一区二区三区男人的天堂| 亚洲自拍啪啪| 亚洲激情六月丁香| 91久久精品美女高潮| 老司机成人在线视频| 久久午夜av| 一区二区三区亚洲| 久久精品日产第一区二区三区 | 久久精品72免费观看| 国产精品女主播在线观看| 中文在线一区| 午夜精品久久久99热福利| 国产精品草莓在线免费观看| 一区二区不卡在线视频 午夜欧美不卡在 | 午夜精品一区二区三区电影天堂| 亚洲天堂偷拍| 国产精品久久久久婷婷| 亚洲影院色在线观看免费| 午夜视频在线观看一区二区三区 | 久久五月激情| 欧美大香线蕉线伊人久久国产精品| 激情久久影院| 激情丁香综合| 欧美va天堂va视频va在线| 国产一区二区三区四区在线观看 | 久久国产欧美| 蜜桃久久av一区| 亚洲破处大片| 欧美日韩国产成人在线观看| 日韩一区二区精品| 欧美在线观看日本一区| 精品白丝av| 欧美久久99| 亚洲欧美在线播放| 欧美超级免费视 在线| 艳女tv在线观看国产一区| 国产精品对白刺激久久久| 性欧美大战久久久久久久久| 美女国产精品| 亚洲视频一二| 精品va天堂亚洲国产| 欧美欧美全黄| 久久不射中文字幕| 亚洲黄色性网站| 欧美中文字幕在线播放| 1024亚洲| 国产精品久久久久久影视| 久久久噜噜噜久久人人看| 亚洲精选视频免费看| 久久久久9999亚洲精品| 一本久久综合| 国语自产精品视频在线看8查询8 | 欧美成人精品影院| 欧美亚洲综合久久| 亚洲日韩欧美视频| 久久夜色精品国产欧美乱极品| 亚洲伦理一区| 久久亚洲电影| 国产精品国色综合久久| 午夜精品久久久久久久久久久久 | 最新国产乱人伦偷精品免费网站 | 午夜伦理片一区| 久久久久久网站| 欧美有码在线视频| 亚洲精品乱码久久久久久黑人| 国产噜噜噜噜噜久久久久久久久| 免费久久精品视频| 久久狠狠婷婷| 亚洲与欧洲av电影| 亚洲精品日韩在线| 亚洲韩日在线| 欧美激情中文字幕乱码免费| 国语自产在线不卡| 激情综合激情|