添加huffman算法
This commit is contained in:
19
source/soft/huffman.h
Normal file
19
source/soft/huffman.h
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