搜索资源列表
lzw
- 老外写的一个实现LZW算法的示范程序,为了简单起见,该算法未作最佳的优化.-foreigner was a realization of the LZW algorithm model procedures for the sake of simplicity, the algorithm is not optimal for the best.
LZW算法源码C语言
- LZW压缩算法简介 作者:宋成 描述:一篇关于LZW压缩算法简介的文章,通俗易懂,值得一看! 备注:该文章整理自软件报1998年合订本上册。 LZW压缩算法是一种新颖的压缩方法,由Lemple-Ziv-Welch 三人共同创造,用他们的名字命名。它采用了一种先进的串表压缩不,将每个第一次出现的串放在一个串表中,用一个数字来表示串,压缩文件只存贮数字,则不存贮串,从而使图象文件的压缩效率得到较大的提高。奇妙的是,不管是在压缩还是在解压缩的过程中都能正确的建立这个串表,
LZW
- LZW算法的C语言实现!能够实现对原始数据的压缩!
LZW
- 用vc++实现了用LZW算法来对图象进行压缩处理
LZW
- LZW用C语言实现。 LZW算法中,首先建立一个字符串表,把每一个第一次出现的字符串放入串表中,并用一个数字来表示,这个数字与此字符串在串表中的位置有关,并将这个数字 存入压缩文件中,如果这个字符串再次出现时,即可用表示它的数字来代替,并将这个数字存入文件中。压缩完成后将串表丢弃。如\"print\" 字符串,如果在压缩时用266表示,只要再次出现,均用266表示,并将\"print\"字符串存入串表中,在图象解码时遇到数字266,即可从串表中查出 266所代表的字符串\"print\",
lzw
- 这是一个密码学实验程序,主要是用LZW算法进行数据的处理
LZW
- lzw压缩源代码, 非常快速的lzw算法,以前保存下来的,现在共享给大家
实现多媒体lzw算法
- 实现多媒体文件的lzrw算法,在vc6下编译成功,算法代码没有仔细研究-multimedia documents lzrw algorithm, compiled under the vc6 successful, the algorithm code without careful study
含有zip、lzw、gzip等多种压缩算法的程序
- 含有zip、lzw、gzip等多种压缩算法的程序
C++实现数据无损压缩、解压(使用LZW算法).
- C++实现数据无损压缩、解压(使用LZW算法).
lzw
- lzw算法的实现,字典项过多是可以自动清零-lzw algorithm, the dictionary is too many items can be automatically cleared
LZW
- LZW算法说明 及 C与 Java实现. 使用c和java两种语言实现LZW压缩解压缩算法-LZW algorithm descr iptions and C and Java. The use of two languages, c, java achieve LZW compression decompression algorithms
LZW
- LZW算法,实现对文本文件的加压和解压,能处理任意后缀的文件-LZW algorithm, to realize a text file compression and decompression, can handle any file suffix
lzw
- Lzw字典压缩解压缩算法,lzw算法简单但压缩效果并不比haffman算法差。现在用途也很广泛-Lzw dictionary compression decompression algorithms, lzw algorithm is simple but not higher than compression algorithm haffman worse. Now is also very wide range of uses
LZW
- LZW算法C实现(标准LZW算法,经过验证,对不同数据有一定的压缩效果)-LZW algorithm C to achieve (standard LZW algorithm is proven, there are some different data compression)
LZ77-LZ78-HUF-ARI-LZW-RLE
- 此程序包括哈夫曼算法、算术算法、RLE算法、LZ77及LZ78算法、LZW算法等。-This program includes Huffman algorithm, arithmetic algorithms, RLE algorithm, LZ77 and LZ78 algorithm, LZW algorithm.
LZW
- 这是基于多媒体实验所要求的lzw算法的简单实现,可以作为简单的参考来用!-This is based on multimedia experiment called lzw simple implementation of the algorithm can be used as a simple reference to use!
LZW
- lzw算法实现,可以实现对文本的编码和解码,方便简便-lzw algorithm, can encode and decode the text to facilitate easy
LZW算法C++代码(文件操作)
- LZW压缩算法C++程序代码(只支持文件操作,不是内存操作)
LZW压缩解压算法的完整实现
- LZW算法:又称串表压缩算法,是无损压缩的一种。采用字典的方式编码和解码。