su 的源代码库

源代码在线查看: wpchuff.comp.dwpt.2d.lib

软件大小: 13691 K
上传用户: goocool
关键词: su 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				WPCHUFF -Routines for in memory Huffman coding/decoding								huffCompress - huffman compress a byte stream in a memory buffer and output 						the bit stream into another memory buffer				huffDecompress - decompress a huffman coded bit stream in a memory buffer and 						output the byte stream into another memory buffer   								Function Prototypes:				int huffCompress(void *inb, void *outb)				int huffDecompress(void *inb, void *outb)								huffCompress:				Input:				inb	buffer holding the input byte stream 				Output:				outb	buffer holding the output bit stream								huffDecompres:				inb	buffer holding the input bit stream 				outb	buffer holding the output byte stream								Note:				The algorithm is based on that in Mark Nelson's "Data 				Compression" book. The compression is performed in memory here.								Author:		Tong Chen, 08/01/94							

相关资源