Design
nelson.lst
Associated article: LZW Data Compression
Tags: Database C/C++ Tools Design
_LZW Data Compression_ by Mark R. Nelson [LISTING ONE] /**************************************************************************** ** LZW data compression/expansion demonstration program. ** Mark R. Nelson *****************************************************************************/ #include <stdio.h> #define BITS 12 /* Setting the number of bits to 12, 13 */ #define HASHING_SHIFT BITS-8 /* or 14 affects several constants. */ #define ...


