登录
首页 » Compress-Decompress algrithms » 老外写的一个实现LZW算法的示范程序,为了简单起见,该算法未作最佳的优化.

老外写的一个实现LZW算法的示范程序,为了简单起见,该算法未作最佳的优化.

于 2022-01-25 发布 文件大小:3.31 kB
0 121
下载积分: 2 下载次数: 1

代码说明:

老外写的一个实现LZW算法的示范程序,为了简单起见,该算法未作最佳的优化.-foreigner was a realization of the LZW algorithm model procedures for the sake of simplicity, the algorithm is not optimal for the best.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 在内存中实现zip文件的创建、压缩、解压
    在内存中实现zip文件的创建、压缩、解压-In memory compression, decompress zip files! ! !
    2022-09-01 04:00:02下载
    积分:1
  • 在Jpeg中Huffman采用的是范式Huffman编码。经过查相关资料有两种不同说法,请高手指点。谢谢! 1、构造范式 Huffman 编码的方法大致...
    在Jpeg中Huffman采用的是范式Huffman编码。经过查相关资料有两种不同说法,请高手指点。谢谢! 1、构造范式 Huffman 编码的方法大致是: 分别统计从最大编码长度 maxlength 到 1 的每个长度对应了多少个符号。根据这一信息从 maxlength 个 0 开始以递增顺序为每个符号分配编码。例如,编码长度为 5 的符号有 4 个,长度为 3 的有 1 个,长度为 2 的有 3 个,则分配的编码依次为: 00000 00001 00010 00011 001 01 10 11 问题:如果按照这种说法那么我在一付图像中渡到的数据是:编码长度为 6 的符号有 1 个,长度为 5 的有 1 个,长度为 4 的有 3 个,长度为3的个数为4个,长度为2的个数为1个。按照以上的算法得到的编码为:000000;00001;0010;0011;001;010;011;100;01。出现001是0011的前缀。在读取数据流的时候将不能区别。 2、另外一种说法,曾经发帖问过。前面的长度编码加1左移一位得到后面长度的编码。像我这个例子如何确定最短码的起始值? 谢谢大家指点具体的范式Huffman编码实现-in which Huffman is the paradigm Huffman coding. After investigations related information in two different arguments, please master guiding. Thank you! 1, tectonic paradigm Huffman coding method is generally : statistics separately from the largest maxlength length coding to a length corresponding to each of the number of symbols. According to the information from maxlength-0 progressive order of the distribution of each symbol coding. For example,
    2023-08-31 17:35:03下载
    积分:1
  • #包括<;MEGA8。H & gt;
    #include #include #include #include #include #include #define TG PORTB.1 #define RF_Rx PIND.2 #define Busy PIND.3 #define Mess1 PORTB.0 #define Mess2 PORTD.7 #define Mess3 PORTD.6 #define Mess4 PORTD.5 #define Mess5 PORTB.7 #define Mess6 PORTB.6 #define Buzzer PORTD.0-#include #include #include #include #include #include #define TG PORTB.1 #define RF_Rx PIND.2 #define Busy PIND.3 #define Mess1 PORTB.0 #define Mess2 PORTD.7 #define Mess3 PORTD.6 #define Mess4 PORTD.5 #define Mess5 PORTB.7 #define Mess6 PORTB.6 #define Buzzer PORTD.0
    2022-07-27 10:40:10下载
    积分:1
  • 一个用ZIP算法实现的自解压程序制作,就像RAR的自解压以一样,不过压缩率没有RAR的好。...
    一个用ZIP算法实现的自解压程序制作,就像RAR的自解压以一样,不过压缩率没有RAR的好。-ZIP algorithm used to achieve a self-extracting process of production, like the self-extracting RAR to the same, but the compression rate is not a good RAR.
    2022-03-29 06:17:16下载
    积分:1
  • 数据压缩,自动预测编码技术,matlab实现
    数据压缩,自动预测编码技术,matlab实现,带图-Data compression, automatic predictive coding technique, matlab achieve
    2022-03-02 01:51:15下载
    积分:1
  • 这是在项目中,有一个功能是关于《拼音匹配的算法》。至于算法的思想,就不想过多的解释了,大家去看吧...
    这是在项目中,有一个功能是关于《拼音匹配的算法》。至于算法的思想,就不想过多的解释了,大家去看吧 -pinyinsuanfa
    2022-04-29 05:59:18下载
    积分:1
  • 介绍小波的函数,不是很复杂,初学者应该会有很大的帮助
    介绍小波的函数,不是很复杂,初学者应该会有很大的帮助-Introduced the wavelet function, is not very complicated, beginners should be of great help
    2022-03-30 16:25:16下载
    积分:1
  • VB调用Jpg和Bmp格式相互转换API函数的示例
    VB调用Jpg和Bmp格式相互转换API函数的示例-VB call Jpg and Bmp format conversion API Function Examples
    2022-02-01 04:39:43下载
    积分:1
  • 酒店的管理,主要是管理酒店的一些日常消费方面的。使我的一个课程设计...
    酒店的管理,主要是管理酒店的一些日常消费方面的。使我的一个课程设计 -hotel management, hotel management is the number of daily consumption. I design a curriculum
    2022-04-16 05:44:26下载
    积分:1
  • The contents of multiple files into one file, be merged file name from the comma...
    将多个文件的内容合并为一个文件,被合并文件的文件名由命令行参数提供。-The contents of multiple files into one file, be merged file name from the command-line parameter.
    2022-09-03 04:55:03下载
    积分:1
  • 696518资源总数
  • 105873会员总数
  • 12今日下载