CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - lzw c

搜索资源列表

  1. lzw源码

    0下载:
  2. lzw源码,比较好压缩解压算法源码网页的字体、大小、颜色及页面布局的语言,使用任何的文本编辑器都可以 对它进行编辑,与VB、C++等编程...最多可包含 256 种颜色(包括透明色)。文 件的大小取决于实际使用的颜色数目。它使用 LZW 压缩算法来... (2005-6-7,VB,61KB,下载0次)【向站长-4,558,302 source, the better compression decompression algorithm source web font, size, color
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:25823
    • 提供者:高压
  1. compc++

    0下载:
  2. 这个代码包中包含了一些比较通用的无损压缩算法的源代码,如果你想深入理解一些图像格式,那么读懂这些代码会对你有很大帮助,这是基础。(包中包括的算法有:lzari、lzhuf、lzss、lzw、lz77、huffman、rle8、rle16)。工具:通用C 。-this code contains some of the more common lossless compression algorithm source code, if you want to understand in depth
  3. 所属分类:GDI/图象编程

    • 发布日期:2008-10-13
    • 文件大小:106119
    • 提供者:周自强
  1. (利用GIF_LZW算法实现的)网络图片传输

    0下载:
  2. (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF
  3. 所属分类:网络编程

    • 发布日期:2008-10-13
    • 文件大小:62518
    • 提供者:
  1. lzw.rar

    0下载:
  2. 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
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1327
    • 提供者:caj
  1. lzw

    1下载:
  2. 实现lzw词典编码方法 Lzw编码算法的设计思路: 1.开始时的词典包含所有的根(先将所有单个字符编码),当前缀P时空的; 2.当前字符(C)=字符流中的下一个字符; 3.判断缀-符串P+C是否在词典中 A如果“是”:P=P+C//(用C扩展P) B.如果“否”: a 把代表当前前缀P的马子输出到码字流; b 把缀-符串P+C添加到词典; c 令P=C//(现在的P仅包含一个字符C); 4. 判断字符流中是否还有码字要译 (1)如果是,就返回到2;
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-21
    • 文件大小:1236
    • 提供者:符晓娟
  1. LZWCompression

    0下载:
  2. LZW 压缩算法的C语言实现,可以实现对字符串的字典压缩编码。初级程序-LZW compression algorithm of the C language can be achieved on the string dictionary coding. Primary process
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-03-28
    • 文件大小:16588
    • 提供者:zgf
  1. LZW_demo

    0下载:
  2. C++ LZW COMPRESSION&DECOMPRESSION
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:79573
    • 提供者:HT
  1. LZW

    0下载:
  2. lzw compresssion for c++ blablablaewfesg
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:35755
    • 提供者:CrazyAkuma
  1. lzws-CPP-code

    0下载:
  2. 编码 1、分析字符串流,从词典中寻找最长匹配串P(P在表中,而P+C不在表中。P为进行编码字符串,C为P后的第一个字符)。 2、输出P对应的词典码字(索引)。 3、将P+C放入词典-LZW s C++ code
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:939
    • 提供者:韩浩
  1. Huffman-Fano-LZW-Shannon-CSharp

    0下载:
  2. this Source Code in Programed in C# and complete C# project is uploaded... 4 codding algorithms are programmed, huffman LZW fano and shannon-this Source Code in Programed in C# and complete C# project is uploaded... 4 codding algorithms are
  3. 所属分类:CSharp

    • 发布日期:2017-03-31
    • 文件大小:111185
    • 提供者:
  1. CCCcodeo

    0下载:
  2. 其中包含将256色彩色图象转化为灰度图象,LZW压缩算法,显示出来DDIB位图,哈夫曼编码及实现图象的马赛克效果的C++源码 可直接使用。 -Which contains 256 color color image into a grayscale image, LZW compression algorithm, displayed DDIB bit map, Huffman coding and image mosaic C++ source code can be used direc
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:480450
    • 提供者:奉献
  1. LZW

    0下载:
  2. 经典LZW算法的C++实现,仅用于分析算法思想-Just for study on LZW agorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:1796
    • 提供者:RK
  1. LZW

    0下载:
  2. 使用c++实现著名的LZW算法,包含有2个类文件-Using c++ implementation famous LZW algorithm, contains two class files
  3. 所属分类:File Operate

    • 发布日期:2017-11-14
    • 文件大小:460190
    • 提供者:xiejunqi
  1. LZW

    0下载:
  2. c++开发语言实现LZW文件压缩解压算法-c++ LZW file compression and decompression algorithms
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:5315
    • 提供者:miss liu
  1. SharpLZW

    0下载:
  2. lzw coding in c sharp using decoder and encoder algorthem
  3. 所属分类:CSharp

    • 发布日期:2017-04-25
    • 文件大小:243122
    • 提供者:ghufran
  1. LZW

    0下载:
  2. 用C++写的是多媒体上关于LZW算法的代码,希望对各位有用-With C++ multimedia on the code is written on LZW algorithm, hope that useful
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-27
    • 文件大小:157210
    • 提供者:王赢
  1. lzw-C

    0下载:
  2. lzw算法的C语言实现,有压缩程序和解压程序-lzw algorithm in C language, the program compression and decompression procedures
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-03
    • 文件大小:862577
    • 提供者:马超
搜珍网 www.dssz.com