上传者: 42161497
|
上传时间: 2021-11-29 10:08:55
|
文件大小: 62KB
|
文件类型: -
自适应霍夫曼
使用Vitter算法在Java中实现自适应霍夫曼编码。
如何运行编码器
使用javac进行编译
$ java adaptiveHuffman.encoder.Encoder InputFile OutputFile`
其中InputFile是要压缩的一些文本或其他文件,而OutputFile是将压缩后的代码写入的位置。
如何运行解码器
$ java adaptiveHuffman.decoder.Decoder InputFile OutputFile
其中InputFile是压缩的中间文件,而OutputFile是将未压缩的数据写入的位置。