搜索资源列表

  1. LZ77conbined_with_KMP_algorithm

    0下载:
  2. LZ77算法与模式匹配KMP算法的结合及算法实现,压缩包内部是一个详细讲解文档,其中文档中附有对应实现源码。-LZ77 algorithm and pattern matching algorithm KMP and the integration algorithm, Compression is an internal packet elaborate document, which document with the corres
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:18671
    • 提供者:张华
  1. CompressMethod

    0下载:
  2. 多种算法压缩与解压缩方式,包括LZ77算法,LHA算法,算术编码arith算法,Zip算法压缩与解压缩-multiple algorithm compression and decompression, including the LZ77 algorithm, LHA algorithm, arith arithmetic coding algorithm, the algorithm Zip compression and deco
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:305066
    • 提供者:yuants
  1. lz77

    0下载:
  2. LZ: LZSS by Haruhiko Okumura.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:8152
    • 提供者:dlrobin
  1. lz

    0下载:
  2. lz77压缩解压缩完整代码.可以学习到字典压缩的基本理论和实际操作,是很好的学习材料.
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:4805
    • 提供者:闻涛
  1. war

    0下载:
  2. 压缩解压算法LZ77算法有许多派生算法(这里面包括 LZSS算法)。它们的算法原理上基本都相同,无论是哪种派生算法,LZ77算法总会包含一个动态窗口(Sliding Window)和一个预读缓冲器(Read Ahead Buffer)。动态窗口是个历史缓冲器,它被用来存放输入流的前n个字节的有关信息。一个动态窗口的数据范围可以从 0K 到 64K,而LZSS算法使用了一个4K的动态窗口。预读缓冲器是与动态窗口相对应的,它被用来存放输入流
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1440
    • 提供者:孙海滨
  1. Compression

    1下载:
  2. 几种常用的压缩算法 本程序包含以下功能: 1、 Arithmetic coding 2、 Huffman coding 3、 LZ77 coding 4、 LZ78 coding 5、 LZW 6、 RLE 7、 DCT 8、 Furie transform
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:1149030
    • 提供者:王若
  1. CSDN技术中心 LZ77压缩算法(C语言版)

    1下载:
  2. 是一个压缩文件的算法 用c语言写的-is a compression algorithm used documents written in language c
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:8065
    • 提供者:李游
  1. GNUzip_c

    0下载:
  2. 采用 LZ77 运算规则 压缩及解压工具-Operational rules adopted LZ77 compression and decompression tools
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:242330
    • 提供者:漫漫长夜
  1. 111

    0下载:
  2. 本文介绍了数字图像压缩方法对比研究 Huffman编码 LZ77压缩算法 离散余弦变换(DCT) RLE编码
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:112179
    • 提供者:wz
  1. lz77_source

    1下载:
  2. 源代码的思路参考自 Mark Nelson 所著的<<数据压缩技术原理与范例>> 中的第八章\"滑动窗口压缩\",是lz77算法的一种简介直观的实现,但是由于 没有采用如LZSS算法中的二叉搜索树技术,所以在运行速度上不如LZSS算法。 采用了微量缓冲区buf 以加快执行速度。
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:79917
    • 提供者:xxxxxiao
  1. Compression

    0下载:
  2. LZW haffman LZ77 LZ78
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:1153603
    • 提供者:OK
  1. lz77

    0下载:
  2. 不需要什么h文件,直接加入一个project就可以。 Lz77Compress压缩 Lz77Decompress解压
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:4040
    • 提供者:redsignal
  1. LZW

    0下载:
  2. 此算法是一个压缩算法,lwz在lz77,lz78的基础上改进的一种算法。
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:845
    • 提供者:renqiang
  1. lz77Dir

    0下载:
  2. 在Lz77的基础上修改,同时增加压缩目录及子目录的功能,VS2005下测试编译OK.
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:15709
    • 提供者:鱛真昆
  1. GZIP

    0下载:
  2. GNU 系统开发的基于Iz77语法的压缩 学习lz77压缩算法 -GNU system development based on the syntax of compressed Iz77 learning lz77 Compression Algorithm
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:254915
    • 提供者:君风
  1. LZ77中匹配的C程式附錄

    0下载:
  2. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:1385
    • 提供者:古寿
  1. LZMA465

    0下载:
  2. 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<

  3. 所属分类:数值算法/人工智能

    • 发布日期:2009-02-13
    • 文件大小:288122
    • 提供者:happyusermhx
  1. GZIP

    0下载:
  2. GNU 系统开发的基于Iz77语法的压缩 学习lz77压缩算法 -GNU system development based on the syntax of compressed Iz77 learning lz77 Compression Algorithm
  3. 所属分类:压缩解压

    • 发布日期:2024-05-21
    • 文件大小:254976
    • 提供者:君风
  1. LZ77中匹配的C程式附錄

    0下载:
  2. 所属分类:压缩解压

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:古寿
  1. LZ77arithmetic

    0下载:
  2. 测试压缩一个425K的文件需要9.4秒,压缩后的文件为177K。如果要提高压缩速度,那么算法的复杂度就得增加了。 -compression testing of a 425K file 9.4 seconds, compressed the files to 177K. If we are to raise compression speed, then the algorithm complexity must increase.
  3. 所属分类:压缩解压

    • 发布日期:2024-05-21
    • 文件大小:3072
    • 提供者:傻傻
« 1 2 3 4 5 6 78 9 10 »

源码中国 www.ymcn.org