- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
/*----------------------------------------------------------------------------
LZSS.C -- A Data Compression Program
4/6/1989 Haruhiko Okumura
Use, distribute, and modify this program freely.
Please send me your improved versions.
PC-VAN SCIENCE
NIFTY-Serve PAF01022
CompuServe 74050,1022
Some changes made June, 2003 by Chris Giese
geezer@, /~geezer
- Changed F from 16 to 18, for compatability with Microsoft COMPRESS/EXPAND
EXPAND.EXE is on the install disks for MS-DOS version 6 and Windows 3.1
COMPRESS.EXE is in the Win 3.1 SDK, and comes with Borland C++ 3.1
- Changed compress/expand chars on command line from e/d to c/u
- Where possible and correct, changed ints to unsigned
- Made all functions static
- Changed formatting, indenting, global variable names, and function names
- Tried to simplify/clarify code in some areas
----------------------------------------------------------------------------*/
#include stdlib.h
#include string.h
#include ctype.h
#include stdio.h
/* size of ring buffer */
#define N 4096
/* index for root of binary search trees */
#define NIL N
/* upper limit for g_match_len. Changed from 18 to 16 for binary
compatability with Microsoft COMPRESS.EXE and EXPAND.EXE
#define F 18 */
#define F 16
/* encode string into position and length
if match_length is greater than this: */
#define THRESHOLD 2
/* these assume little-endian CPU like Intel x86
-- need byte-swap function for big endian CPU */
#define READ_LE32(X) *(uint32_t *)(X)
#define WRITE_LE32(X,Y) *(uint32_t *)(X) = (Y)
/* this assumes sizeof(long)==4 */
typedef unsigned long uint32_t;
/* text (input) size counter, code (output) size counter,
and counter for reporting progress every 1K bytes */
static unsigned long g_text_size, g_code_size, g_print_count;
/* ring buffer of size N, with extra F-1 bytes
to facilitate string comparison */
static unsigned char g_ring_buffer[N + F - 1];
/* position and length of longest match; set by insert_node() */
static unsigned g_match_pos, g_mat
您可能关注的文档
最近下载
- 六年级语文上册生字表识字表《写字表》字帖人教版同步字帖描红2.pdf VIP
- 第8课 用制度体系保证人民当家作主 教案 -2023-2024学年中职高教版(2023)中国特色社会主义.docx VIP
- 高二数学(含创意快闪特效)-【开学第一课】2023年高中秋季开学指南之爱上数学课.pptx VIP
- 第8课 用制度体系保证人民当家作主中职专用【2023年秋最新版】.pptx VIP
- 2025年秋新北师大版数学2年级上册全册同步教学设计.pdf
- 某热电厂1×300MW供热机组工程安全预评价报告.doc VIP
- 四年级语文上册《写字表》字帖.pdf VIP
- 地埋管计算方法.doc VIP
- 太极拳理论教学课件.pptx VIP
- 八年级上册语文学习笔记.pptx VIP
文档评论(0)