代码搜索:LZSS
找到约 204 项符合「LZSS」的源代码
代码结果 204
www.eeworm.com/read/103854/15459635
bas compress.bas
Attribute VB_Name = "Compress"
'* LZSS Visual Basic port from ANSI C
'* Translation Copyright 1999 Patterson Programming
Option Explicit
DefInt A-Z
Const N = 4096
Const F = 18
Const NIL = N
www.eeworm.com/read/305065/3780865
bat makegcc.bat
rem Batchfile for compiling with DJGPP2, the FREE 32-bit compiler!
gxx -fpack-struct -o exedat.exe exedat.cpp lzss.c lzari.c globals.c -lgpp -lm
www.eeworm.com/read/285401/8842440
c lz77.c
/*
* 源代码的思路参考自 Mark Nelson 所著的
* 中的第八章"滑动窗口压缩",是lz77算法的一种简介直观的实现,但是由于
* 没有采用如LZSS算法中的二叉搜索树技术,所以在运行速度上不如LZSS算法。
* 采用了微量缓冲区buf 以加快执行速度。
*
* created by chenyong 2008.03.03
*/
www.eeworm.com/read/310173/13656950
c lz77.c
/*
* 源代码的思路参考自 Mark Nelson 所著的
* 中的第八章"滑动窗口压缩",是lz77算法的一种简介直观的实现,但是由于
* 没有采用如LZSS算法中的二叉搜索树技术,所以在运行速度上不如LZSS算法。
* 采用了微量缓冲区buf 以加快执行速度。
*
* created by chenyong 2008.03.03
*/