文件名称:lzwfordepresscoding
介绍说明--下载内容均来自于网络,请自行研究使用
LZW压缩和解压缩程序
lzw.c 主要的功能模块
bitio.c/bitio.h 一些支撑函数,支持以比特(bit)为单位的文件I/O
用法:
压缩 lzw E <in-file> <out-file>
解压缩 lzw D <in-file> <out-file>
压缩时,读入<in-file>中内容,压缩后存入<out-file>中,得到压缩文件。
解压缩时,读入<in-file>中内容,将结果存入<out-file>中,得到原文件。
本代码在linux+gcc/windows+vc下经过测试,为了使读者容易理解算法本身,
算法实现中仅采用了简单的错误处理机制和优化。-LZW compression and decompression procedures lzw.c major functional modules bitio.c / bitio . h some support function, and support bits (bit) for the File I / O usage : Compression 4,558,302 E
lzw.c 主要的功能模块
bitio.c/bitio.h 一些支撑函数,支持以比特(bit)为单位的文件I/O
用法:
压缩 lzw E <in-file> <out-file>
解压缩 lzw D <in-file> <out-file>
压缩时,读入<in-file>中内容,压缩后存入<out-file>中,得到压缩文件。
解压缩时,读入<in-file>中内容,将结果存入<out-file>中,得到原文件。
本代码在linux+gcc/windows+vc下经过测试,为了使读者容易理解算法本身,
算法实现中仅采用了简单的错误处理机制和优化。-LZW compression and decompression procedures lzw.c major functional modules bitio.c / bitio . h some support function, and support bits (bit) for the File I / O usage : Compression 4,558,302 E
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 115157694lzwfordepresscoding.rar 列表 lzw.c