- 论坛徽章:
- 0
|
- #define BITS_PER_BYTE 8
- #define INITIAL_CODE_WIDTH 9
- #define Increment 3
- #define BITS 12
- unsigned int input_code(FILE *input)
- {
- unsigned int return_value;
- static int input_bit_count=0;
- static unsigned long input_bit_buffer=0L;
- while (input_bit_count <= 24)
- {
- input_bit_buffer |=
- (unsigned long) getc(input) << (24-input_bit_count);
- input_bit_count += 8;
- }
- return_value=input_bit_buffer >> (32-BITS);
- input_bit_buffer <<= BITS;
- input_bit_count -= BITS;
- return(return_value);
- }
- void output_code(FILE *output,unsigned int code)
- {
- static int output_bit_count=0;
- static unsigned long output_bit_buffer=0L;
- output_bit_buffer |= (unsigned long) code << (32-BITS-output_bit_count);
- output_bit_count += BITS;
- while (output_bit_count >= 8)
- {
- putc(output_bit_buffer >> 24,output);
- output_bit_buffer <<= 8;
- output_bit_count -= 8;
- }
- }
复制代码 最近在看LZW算法,看到有这么两个函数,一个是将字符编码写入流, 一个从流中读取, 一直不是很明白两个函数的操作。请达人讲解下 |
|