Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - lzss
Search - lzss - List
DL : 0
LZ: LZSS by Haruhiko Okumura.
Update : 2008-10-13 Size : 8152 Publisher : dlrobin

DL : 0
压缩解压算法LZ77算法有许多派生算法(这里面包括 LZSS算法)。它们的算法原理上基本都相同,无论是哪种派生算法,LZ77算法总会包含一个动态窗口(Sliding Window)和一个预读缓冲器(Read Ahead Buffer)。动态窗口是个历史缓冲器,它被用来存放输入流的前n个字节的有关信息。一个动态窗口的数据范围可以从 0K 到 64K,而LZSS算法使用了一个4K的动态窗口。预读缓冲器是与动态窗口相对应的,它被用来存放输入流的前n个字节,预读缓冲器的大小通常在0 – 258 之间。这个算法就是基于这些建立的。用下n个字节填充预读缓存器(这里的n是预读缓存器的大小)。在动态窗口中寻找与预读缓冲器中的最匹配的数据,如果匹配的数据长度大于最小匹配长度 (通常取决于编码器,以及动态窗口的大小,比如一个4K的动态窗口,它的最小匹配长度就是2),那么就输出一对〈长度(length),距离(distance)〉数组。长度(length)是匹配的数据长度,而距离(distance)说明了在输入流中向后多少字节这个匹配数据可以被找到。
Update : 2008-10-13 Size : 1440 Publisher : 孙海滨

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

DL : 0
jzss压缩算法,的源程序代码!应用于java的压缩与解压工作
Update : 2008-10-13 Size : 13720 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 : 2008-10-13 Size : 4636 Publisher : 冰冰

This scheme is initiated by Ziv and Lempel [1]. A slightly modified version is described by Storer and Szymanski [2]. An implementation using a binary tree is proposed by Bell [3]. The algorithm is quite simple: Keep a ring buffer, which initially contains "space" characters only. Read several letters from the file to the buffer. Then search the buffer for the longest string that matches the letters just read, and send its length and position in the buffer.
Update : 2024-05-03 Size : 3072 Publisher : 冰冰

用于多文件及文件夹压缩的算法,采用lzss算法,c语言编写,很值得借鉴-for more documents and folders compression algorithm used lzss algorithm, c language, we can draw
Update : 2024-05-03 Size : 7168 Publisher : 任燕

WinBig. A file archive utility written in VB. Compression and decompression routines are LZSS. Full source code included. -WinBig. A file archive utility written in V B. Compression and decompression routines are LZSS. Full source code included.
Update : 2024-05-03 Size : 241664 Publisher : jason..

Windows LZSS Compression library -Windows LZSS Compression library
Update : 2024-05-03 Size : 17408 Publisher : lff

源代码的思路参考自 Mark Nelson 所著的<<数据压缩技术原理与范例>> 中的第八章"滑动窗口压缩",是lz77算法的一种简介直观的实现,但是由于 没有采用如LZSS算法中的二叉搜索树技术,所以在运行速度上不如LZSS算法。 采用了微量缓冲区buf 以加快执行速度。-The source code since the idea of reference written by Mark Nelson
Update : 2024-05-03 Size : 79872 Publisher :

DL : 0
远程控制软件-偷窥者 本软件的最大特点是在服务器端与客户端之间有两个socket连接,一个用 于图像的的传送或者接收,另一个负责命令的处理,这样就保证了操作的流畅。 1.可以偷窥到对方的桌面内容,按设置的时间进行刷新. 2.可以用鼠标控制对方的电脑,包括所有的鼠标操作. 3.可以使用键盘控制对方的电脑,几乎可用所有的按键. 4.在客户端可以建立多个窗口,对多台电脑进行监视控制. 5.可以运行一条命令,例如打开一个记事本. 6.可以锁定/解锁对方的电脑. 7.可以让对方电脑(强行)注销/重启/关机. 8.可以传送/删除/移动对方的电脑上的文件. 9.在必要时还可以关掉服务程序. 10.增加了自动发信的功能,在连接Internet后会发送电脑IP地址. 11.可以保存配置. 12.可以对传送的图像进行压缩,压缩算法有LZW(推荐)、LZ77、LZSS等. 13.可以指定获得桌面的颜色数目,有单色、16色、256色和真彩,以保证 在可以桌面图像更新的速度要求.-The most important feature of this software are the server side and client-side socket connection between the two, one with In image transmission or reception, and the other is responsible for order processing, thus ensuring the smooth operation. 1. Can be peeping into the contents of each other s desktop, by setting the time for refresh. 2. Can use the mouse to control each other s computer, including all of the mouse. 3. You can use the keyboard to control each other s computer, almost all of the buttons available. 4. The client can create multiple windows on multiple computers for supervisory control. 5. Can run a command, such as Notepad to open a. 6. Can lock/unlock each other s computer. 7. Will allow the other computer (force) write-off/restart/shutdown. 8. Can send/delete/move each other s files on the computer. 9., Where necessary, can also turn off the service
Update : 2024-05-03 Size : 166912 Publisher : 许凤

字典压缩算法,包括了长见的几种算法,C语言实现-Dictionary compression algorithm
Update : 2024-05-03 Size : 575488 Publisher : lxz

範例中展示了Lzss的資料壓縮與解壓縮的基本原理的實作-Example shows the Lzss of data compression and decompression of the basic principles of implementation
Update : 2024-05-03 Size : 28672 Publisher : JohnnyWeng

DL : 0
lzss c++ realization
Update : 2024-05-03 Size : 48128 Publisher : Aleksey

DL : 0
lzss c++ realization
Update : 2024-05-03 Size : 1013760 Publisher : Aleksey

this zip file contains source code for LZSS algorithm in c language
Update : 2024-05-03 Size : 34816 Publisher : ankursatriani


Update : 2024-05-03 Size : 17408 Publisher : gjoerulv

Its a LZSS algorithm for archieving your files... Made in C.... Enjoy)
Update : 2024-05-03 Size : 4096 Publisher : ASDF

用Huffman、Lzss、Lzw对图片进行压缩和解压缩-With Huffman, Lzss, Lzw on image compression and decompression
Update : 2024-05-03 Size : 10240 Publisher : 叶紫

DL : 0
lz77 source code asm && c++ visul c++ tralylya
Update : 2024-05-03 Size : 3072 Publisher : dmitriy
« 1 2 3 4 56 7 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.