CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - LZW编码

搜索资源列表

  1. LZ77

    2下载:
  2. LZ77压缩算法是一种无损数据压缩算法。该算法是大多数 LZ 算法变体如 LZW、LZSS 以及其它一些压缩算法的基础。是基于字典的编码器。
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:5364
    • 提供者:耶涛
  1. 数据结构的C++描述

    1下载:
  2. 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-10-17
    • 文件大小:5125525
    • 提供者:gufeng20081010
  1. lzwC.rar

    1下载:
  2. lzw字典编码解码算法源代码 C++程序,Dictionary lzw codec algorithm source code C++ program
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2015-03-23
    • 文件大小:2892
    • 提供者:侯亚斐
  1. 5275340D-2F87-4FAF-A46F-48070DD54B66

    0下载:
  2. lz编码译码LZW就是通过建立一个字符串表,用较短的代码来表示较长的字符串来实现压缩. -lz codec LZW is through the establishment of a string table, with a shorter code to represent a long string to achieve compression.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-03
    • 文件大小:206774
    • 提供者:kaidu
  1. TheDataCompressionBook2ndEditionMarkNelson

    0下载:
  2. 本书详尽描述了各类主要的压缩算法,包括LZW,哈夫曼,自适应哈夫曼,算术编码等-This book describes in detail the main types of compression algorithms, including LZW, Huffman, adaptive Huffman, arithmetic coding
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-06
    • 文件大小:1535997
    • 提供者:飞飞
  1. JPEGTOBMP

    0下载:
  2. LZW算法,字符串和编码的对应关系是在压缩过程中动态生成的,并且隐含在压缩数据中,解压的时候根据表来进行恢复,算是一种无损压缩.-LZW
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-30
    • 文件大小:506762
    • 提供者:
  1. LZWdepressionCsourcecode

    0下载:
  2. 字典编码LZW 解压缩 读写 头文件和源文件源代码-LZW decompression dictionary to read and write code header files and source code files
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-16
    • 文件大小:9192
    • 提供者:yeqiuyu
  1. lzwxjj

    0下载:
  2. lzw解码 编码 1、分析字符串流,从词典中寻找最长匹配串P(P在表中,而P+C不在表中。P为进行编码字符串,C为P后的第一个字符)。 2、输出P对应的词典码字(索引)。 3、将P+C放入词典-lzw decoding coded 1, analysis of a string stream, from the dictionary to find the longest match string P (P in the table, while the P+ C is not
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-02
    • 文件大小:1135
    • 提供者:xjj
  1. LZW_Compression

    0下载:
  2.  LZW压缩算法的基本原理:提取原始文本文件数据中的不同字符,基于这些字符创建一个编译表,然后用编译表中的字符的索引来替代原始文本文件数据中的相应字符,减少原始数据大小。看起来和调色板图象的实现原理差不多,但是应该注意到的是,我们这里的编译表不是事先创建好的,而是根据原始文件数据动态创建的,解码时还要从已编码的数据中还原出原来的编译表.-LZW Compression
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-15
    • 文件大小:5937
    • 提供者:cky
  1. lzwcode

    0下载:
  2. 词典编码LZW编解码的基本实现,包含LZW的编码和解码,实现了对lena图的编解码,用于数字图像处理。-The dictionary coding LZW the basic realization of the codec, including LZW encoding and decoding, the codec lena FIG for digital image processing.
  3. 所属分类:matlab

    • 发布日期:2017-11-13
    • 文件大小:58968
    • 提供者:大鹏
  1. LZWSample

    0下载:
  2. 实现简单的LZW压缩算法,LZW压缩算法的基本概念:LZW压缩有三个重要的对象:数据流(CharStream)、编码流(CodeStream)和编译表(String Table)。在编码时,数据流是输入对象(文本文件的据序列),编码流就是输出对象(经过压缩运算的编码数据);在解码时,编码流则是输入对象,数据流是输出对象;而编译表是在编码和解码时都须要用借助的对象。字符(Character):最基础的数据元素,在文本文件中就是一个字节;字符串(String):由几个连续的字符组成; 前缀(Pref
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-17
    • 文件大小:5142180
    • 提供者:
  1. lzw_compression

    0下载:
  2. LZW压缩编码源程序,用较短的代码来表示较长的字符串来实现压缩。 -LZW compression source code, with a shorter code to indicate a long string to achieve compression.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-14
    • 文件大小:5339
    • 提供者:zzl
« 1 2 3 4»
搜珍网 www.dssz.com