1. 首页
  2. 编程语言
  3. C++ 
  4. HuffmanCoding.cpp

HuffmanCoding.cpp

上传者: 2020-07-21 16:04:25上传 CPP文件 8.38KB 热度 7次
#include #include #include using namespace std; struct HNode { int weight; int parent; int LChild; int RChild; }; struct HCode { char data; char code[1000]; }; class Huffman //哈夫曼类 { private: HNode* HTree; HCode* HCodeTable; int N;
下载地址
用户评论