12 lines
204 B
C++
12 lines
204 B
C++
#include <iostream>
|
|
#include <huffman_code.h>
|
|
|
|
int main() {
|
|
auto code = new HTCode();
|
|
code->Open("/home/dongl/code/cpp_data_struct/src/test.txt");
|
|
code->CreateHuffmanCode();
|
|
|
|
|
|
return 0;
|
|
}
|