简体   繁体   English

仅使用霍夫曼编码的算法示例是什么?

[英]What is an example of an algorithm which uses Huffman coding only?

For example, a LZM algorithm example could be the LZMA, but the Huffman example I can't find. 例如,一个LZM算法示例可以是LZMA,但是我找不到霍夫曼示例。 I understand that BWT uses it to some extent, but it uses another type of algorithm too. 我了解BWT在某种程度上使用了它,但是它也使用了另一种算法。

I think you mean implementation, not algorithm. 我认为您的意思是实现,而不是算法。 Huffman coding is an algorithm. 霍夫曼编码一种算法。

zlib provides the Z_HUFFMAN_ONLY compression strategy, which only uses Huffman coding to compress the input. zlib提供了Z_HUFFMAN_ONLY压缩策略,该策略仅使用霍夫曼编码来压缩输入。 The string matching zlib normally uses is turned off with that option. zlib通常使用的匹配字符串使用该选项关闭。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM