Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - lz77
Search - lz77 - List
小波变换+线性预测+LZ77算法实现极速屏幕监控-Wavelet transform+ Linear Prediction+ LZ77 algorithm speed screen monitor
Update : 2024-05-04 Size : 171008 Publisher : 兵哥

压缩库文件v1.2,讲解压缩源码中各种接口程序原型-Clib features RLE, Huffman, LZW, LZ77, and Deflate compression methods.
Update : 2024-05-04 Size : 7168 Publisher : guliqun

常见压缩算法(RLE,LZ77,Huffman等)导引-This is a compression tutorial. This purpose of this tutorial is not to show you how to crack compression, rather it is intended to show you how compression methods work, and can be adapted to programs that will reduce file size.
Update : 2024-05-04 Size : 13312 Publisher : guliqun

数据压缩算法介绍,包含:LZ77算法、LHA算法、算数编码arith算法、Zip算法。仅供学习参考。-Data compression algorithm description, including: LZ77 algorithm, LHA algorithm, arithmetic coding, arith algorithm, Zip algorithm. Study reference purposes only.
Update : 2024-05-04 Size : 305152 Publisher : hehe

Compress/decompress on algoritm lzss/lz-Compress/decompress on algoritm lzss/lz77
Update : 2024-05-04 Size : 579584 Publisher : Michael

视频信号熵编码源程序 熵编码法是一种进行无损数据压缩的技术,在这个技术中一段文字中的每个字母被一段不同长度的比特(Bit)所代替。与此相对的是LZ77或者LZ78等数据压缩方法,在这些方法中原文的一段字母列被其它字母取代。 每个字母按照其出现的可能性所获得的最佳比特数取决于熵。 本程序不仅提供源程序,还提供相应的实例。-Entropy coding the video signal source for entropy coding method is a lossless data compression technology in the technology section of the text in each letter is a bit different lengths (Bit) replaced. In contrast the LZ77 or LZ78 data compression method, etc., in these methods section of the original letters column is replaced by other letters. Each letter appears in accordance with its possibilities to obtain the optimal number of bits depends on the entropy. This procedure provides not only source, but also provide examples.
Update : 2024-05-04 Size : 286720 Publisher : 安慰安防

DL : 0
用C语言实现基于LZ77字典压缩算法的通信系统-Using C language dictionary based compression algorithm LZ77 communication system
Update : 2024-05-04 Size : 2262016 Publisher : 沈旭

DL : 0
lz77 source code asm && c++ visul c++ tralylya
Update : 2024-05-04 Size : 3072 Publisher : dmitriy

DL : 0
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.)
Update : 2024-05-04 Size : 299008 Publisher : Dennis

一个完整的LZ77-ARI压缩程序,压缩率高于gzip。-A complete LZ77-ARI compressor, with compression ratio higher than gzip.
Update : 2024-05-04 Size : 6144 Publisher : Zhang Li

LZ77压缩解压算法,可以实现任意文件的压缩解压-LZ77 compression decompression algorithms can extract any file compression
Update : 2024-05-04 Size : 379904 Publisher : ct

LZ77无损压损算法,可以实现文本和音频文件的压缩和解压,已建好工程-LZ77 algorithm for lossless compression loss, can text and audio file compression and decompression, projects have been completed
Update : 2024-05-04 Size : 7760896 Publisher : ct

LZ77无损压缩算法,直接可以运行,压缩率一般,但运行速度快-LZ77 lossless compression algorithm can be run directly, compression ratio is generally, but it' s fast
Update : 2024-05-04 Size : 379904 Publisher : ct

lz77压缩算法的c++实现,很好的代码,希望可以对你们有帮助-lz77 compression algorithm c++ implementation, a good code
Update : 2024-05-04 Size : 94208 Publisher : dengliang

LZ77 压缩、解压缩算法C++源代码-LZ77 compression, decompression algorithm C++ source code ! !
Update : 2024-05-04 Size : 5120 Publisher : 沈晓

一种基于小波变换、线性预测和LZ77算法的快速屏幕监控程序。VC++程序代码-Based on wavelet transform, linear prediction and the LZ77 algorithm fast on-screen control procedures. VC++ code
Update : 2024-05-04 Size : 159744 Publisher : L

To compile C++ version of file->file LZMA encoding, go to directory CPP/7zip/Bundles/LzmaCon and call make to recompile it: make -f makefile.gcc clean all In some UNIX/Linux versions you must compile LZMA with static libraries. To compile with static libraries, you can use LIB = -lm -static - LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression. LZMA is default and general compression method of 7z format in 7-Zip compression program (www.7-zip.org). LZMA provides high compression ratio and very fast decompression. LZMA is an improved version of famous LZ77 compression algorithm. It was improved in way of maximum increasing of compression ratio, keeping high decompression speed and low memory requirements for
Update : 2024-05-04 Size : 146432 Publisher : duximing

Data compression with LZ77 interface -LZ77 (Lempel-Ziv-1977) is a simple but surprisingly effective form of data compression that takes an entirely differnt approach from Huffman coding. LZ77 is a dictionary-based method
Update : 2024-05-04 Size : 11264 Publisher : pecker168

A compression and depression algorithm, LZ77. There are two folder in this project, support compression several folders and files.
Update : 2024-05-04 Size : 14091264 Publisher : cyblocker

数据压缩算法,用C++代码实现的压缩算法,全面实现LZ77的算法实现过程。-COMPRESSION
Update : 2024-05-04 Size : 41984 Publisher : 陈广文
« 1 2 ... 4 5 6 7 8 910 11 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.