搜索资源列表
LZW
- LZW编码,基于VC6.0平台,应用于图形图像编码,算法类似于字典编码法。
lzw.rar
- lzw 以C++语言完成了lzw压缩程序 根据压缩文件建立字典 根据压缩后的文件建立解压缩字典 无需携带字典,LZW to C++ language completed a LZW compressed file compression program in accordance with the establishment of the dictionary in accordance with the establishment of compressed files without dec
lzw.rar
- 一个c语言实现的基于字典编码技术的lzw数据压缩算法,能正确的实现压缩和解压缩,C language to achieve a dictionary-based coding technology lzw data compression algorithms, to achieve the correct compression and decompression
lzwC.rar
- lzw字典编码解码算法源代码 C++程序,Dictionary lzw codec algorithm source code C++ program
lzw
- lzw算法的实现,字典项过多是可以自动清零-lzw algorithm, the dictionary is too many items can be automatically cleared
lzwdemo
- 字典码的一种实现范例,用lzw方法实现压缩解压-Dictionary An example of code using LZW compression decompression method
maps
- lzw 编码,自动实现编码!初始字典编码长度为26个字母-LZW coding, automatic code! The initial length of the dictionary encoding 26 letters
LZWCompression
- LZW 压缩算法的C语言实现,可以实现对字符串的字典压缩编码。初级程序-LZW compression algorithm of the C language can be achieved on the string dictionary coding. Primary process
Dir0.1
- 多媒体实验,LZW字典编码算法的实现,java-Multimedia experiments, LZW coding algorithm Dictionary, java
Dictionary
- LZW字典编码,简洁扼要的实现,用java实现。-LZW dictionary coding, using java to achieve.
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
cpp3
- 压缩编码的一种经典方法,LZW码,基于字典的建模原理,首先构建字典,然后通过搜索进行压缩-LZW
encode16
- lzw壓縮encode,字典壓縮部份使用16位元儲存在文字檔中,缺點為壓縮效率太差,一個文字需用四個bit表示-lzw compression encode, some use 16-bit compression dictionary is stored in text files, the shortcomings of bad for the compression efficiency of a four bit word, said Xu Yong
LZW
- LZW字典编码和解码的源码。。C++编写。。。VS2008运行-LZW dictionary encoding and decoding the source. . C++ written. . . VS2008 run. . .
LZW
- 基于LZW字典编码的压缩解压算法,动态建立编译表并用哈希表结构存储索引。-Dictionary-based LZW compression decompression coding algorithm, dynamic compilation table set up and use the hash table structure to store the index.
lzw
- LZW码能有效利用字符出现频率冗余度进行压缩,且字典是自适应生成的,但通常不能有效地利用位置冗余度。-Effective use of LZW code redundancy character frequency compression, and adaptive dictionary is generated, but usually can not effectively use the position redundant.
LZW-CLASS
- 这是一个简单的LZW编码程序,能实现字典编码的基本工能!用码树实现!实现LZW编码和译码,任意数一段字符之后,就能实现对其的LZW编码,按照格式输入一段解码字符段,会解码出字符!-This is a simple LZW coding procedure, can realize the basic encoding dictionary work can!!!! Tree with code true! Realize the coding and decoding LZW, arbitrar
lzw
- 实现多媒体流数据无损压缩LZW编码、解码算法,界面简单,可以自定义字典。-Multimedia streaming data about LZW encoding, decoding algorithm, the interface is simple, and can customize the dictionary.
lzw
- lzw字典算法,可实现文件压缩算法,对各类媒体文件进行压缩,释放-lzw dictionary algorithm for file compression algorithm to compress the various types of media files, the release of
LZW压缩解压算法的完整实现
- LZW算法:又称串表压缩算法,是无损压缩的一种。采用字典的方式编码和解码。