哈夫曼编码C编码

bbjwwy5 43 0 txt 2019-01-09 22:01:48

哈夫曼编码、译码。用C++编程 #include #include #include #include using namespace std; struct HuffmanNode { int parent; int weight; int lchild,rchild; }; class HuffmanTree { public: void CountHuffman(); void CodeHuffman(); void DecodeHuffman(); huffmanTree(); private: str

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2019-01-09 22:01:48

太简单了 功能有点少 不过还行