摘要:
CRC32生成多项式:X32+X26+X23+X22+X16+X12+X11+X10+X8+X7+X5+X4+X2+X+1 对应的16进制表示为:0x4C11DB7 下面贴CRC32查表法生成代码: WORD32表示32位无符号整型,对应C语言中的long;BYTE表示8位无符号整型,对应C语言中的 阅读全文
摘要:
PNG文件结构分析:http://www.360doc.com/content/11/0428/12/1016783_112894280.shtml 阅读全文
摘要:
import math from bitarray import bitarray class LZ77Compressor: """ A simplified implementation of the LZ77 Compression Algorithm """ MAX_WINDOW_SIZE = 400 def __init__(self, window_size=20)... 阅读全文