Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - lzss
Search - lzss - List
本文提出了LZSS压缩算法在进行文本压缩时存在的问题,并给出了解决方法。改进后的算法具有较高的压缩率,实验结果令人满意。 关键词:LZSS;数据压缩 -This paper presents a compression algorithm LZSS text compression during the question and gives a solution. Improved algorithm with a higher compression ratio, the experimental results have been satisfactory. Keywords : LZSS; Data Compression
Update : 2008-10-13 Size : 10388 Publisher : 唐吉卓

对LZSS压缩算法的深入应用.h-LZSS compression algorithm to the deep application. H
Update : 2008-10-13 Size : 972 Publisher : 杨勇

对LZSS压缩算法的深入应用.c-LZSS compression algorithm to the deep application. C
Update : 2008-10-13 Size : 1758 Publisher : 杨勇

C++ implementation of LZSS
Update : 2008-10-13 Size : 580486 Publisher : 赵臻

LZSS 压缩/解压算法 算法简单,速度快,压缩效率和Winzip/PKZip 接近-LZSS / decompression algorithm is simple, fast and Winzip compression efficiency and / PKZip close
Update : 2008-10-13 Size : 50640 Publisher : 张森宁

lzss压缩源代码,可以实现消息的压缩。
Update : 2008-10-13 Size : 3711 Publisher :

DL : 2
delhpi下lzss加密算法源码及例子
Update : 2008-10-13 Size : 101020 Publisher : 刘明

三个压缩/解压缩算法,可在linux windows vxworks等平台使用,便于移植
Update : 2011-07-21 Size : 21386 Publisher : ac135246

本人开发一个远程控制软件,有如下功能: 1.可以偷窥到对方的桌面内容,按设置的时间进行刷新. 2.可以用鼠标控制对方的电脑,包括所有的鼠标操作. 3.可以使用键盘控制对方的电脑,几乎可用所有的按键. 4.在客户端可以建立多个窗口,对多台电脑进行监视控制. 5.可以运行一条命令,例如打开一个记事本. 6.可以锁定/解锁对方的电脑. 7.可以让对方电脑(强行)注销/重启/关机. 8.可以传送/删除/移动对方的电脑上的文件. 9.在必要时还可以关掉服务程序. 10.增加了自动发信的功能,在连接Internet后会发送电脑IP地址. 11.可以保存配置. 12.可以对传送的图像进行压缩,压缩算法有LZW(推荐)、LZ77、LZSS等. 13.可以指定获得桌面的颜色数目,有单色、16色、256色和真彩,以保证在可以桌面图像更新的速度要求. -I am developing a remote control software, has the following features: 1. Can be peeping into the contents of each other s desktop. 2. Can use the mouse to control the other computer. 3. You can use the keyboard to control the other computer. 4. The client can create more window. 5. can run a command. 6. can lock/unlock each other s computer. 7. will allow the other computer (forced) write-off/restart/shutdown. 8. can send/delete/move each other s computer documents. 9. where necessary, can also turn off the service program. 10. an increase of automatic letter functions. 11. configuration can be saved. 12. can send the image compression
Update : 2024-05-03 Size : 152576 Publisher :

LZSS压缩算法-LZSS Compression Algorithm
Update : 2024-05-03 Size : 29696 Publisher : Don

LZHUF、LZSS、LZARJ压缩算法-LZHUF, LZSS, LZARJ Compression Algorithm
Update : 2024-05-03 Size : 17408 Publisher : Don

对LZSS压缩算法的深入应用.h-LZSS compression algorithm to the deep application. H
Update : 2024-05-03 Size : 1024 Publisher : 杨勇

In each step the LZSS algorithm sends either a character or a <position, length> pair. Among these, perhaps character "e" appears more frequently than "x", and a <position, length> pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adaptive kind, along with LZSS.-In each step the LZSS algorithm sends either a character or a lt;position, lengthgt; pair. Among these, perhaps character "e" appears more frequently than "x", and a lt;position, lengthgt; pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adaptive kind, along with LZSS.
Update : 2024-05-03 Size : 4096 Publisher : 冰冰

一种无损压缩算法,采用了lzss结合huffman动态编码,速度快-a lossless compression algorithm, using a combination of lzss dynamic Huffman coding, fast
Update : 2024-05-03 Size : 4096 Publisher : 任燕

一种无损压缩算法,是lz77的改进,压缩率并不比lz77高,但速度较快-a lossless compression algorithm is lz77 improved compression rate is higher than lz77, but faster
Update : 2024-05-03 Size : 3072 Publisher : 任燕

DL : 0
测试LZSS算法的VC代码,其中LZSS算法的实现部分为C代码来自网上,修改后在VC上测试通过 可移植到其它平台,如嵌入式系统 示例中直接打开本目录下的Tmp.txt zip压缩Tmp.txt并输出压缩内容到zip.out unzip解压zip.out的内容并输出到unzip.out 目录下Tmp.txt文件必须存在-test LZSS VC code algorithm, the algorithm to achieve LZSS part of the C code from the Internet, after the VC changes on the test can be ported to other platforms, such as embedded systems examples directly under the open Catalog Tmp.txt zip Tmp.txt and output compressed content zip.out zip.out unzip unpacked and the contents of the output directory Tmp.txt unzip.out documents must exist
Update : 2024-05-03 Size : 52224 Publisher :

DL : 0
这个代码包中包含了一些比较通用的无损压缩算法的源代码,如果你想深入理解一些图像格式,那么读懂这些代码会对你有很大帮助,这是基础。(包中包括的算法有: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 some image format, then read these codes you will be of great help, which is the foundation. (Package includes the algorithm are : lzari, lzhuf, lzss, 4,558,302, lz77, Huffman, rle8, rle16). Tools : Definitive C.
Update : 2024-05-03 Size : 105472 Publisher : 周自强

DL : 0
一个关于LZSS压缩算法的演示程序。用于文本数据的压缩模拟。-LZSS on a compression algorithm demonstration program. For text data compression simulation.
Update : 2024-05-03 Size : 161792 Publisher : 高纯

lzss是一个比较著名的压缩算法,改进了lz77。此源代码希望对大家有用。-lzss is one of the more well-known compression algorithms, improved lz77. This source of hope may be useful.
Update : 2024-05-03 Size : 27648 Publisher : sun

几种LZ系列算法:LZARI, LZHUF, LZSS 由于其简单的算法和很高的速度,常被用于BIOS中模块压缩-LZ algorithm : LZARI, LZHUF. LZSS due to its simple algorithm and high speed, often used for BIOS compression module
Update : 2024-05-03 Size : 18432 Publisher : 张森宁
« 1 23 4 5 6 7 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.