添加lzw压缩算法
This commit is contained in:
19
other/huffman.htt
Normal file
19
other/huffman.htt
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
#ifndef huffman_h__
|
||||
#define huffman_h__
|
||||
|
||||
#include "bytearray.h"
|
||||
|
||||
// huffman编码的实现
|
||||
|
||||
array_def *hm_encode(array_def *data);
|
||||
|
||||
array_def *hm_decode(array_def *data);
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user