1. 首页
  2. 课程学习
  3. C++/C
  4. 霍夫曼编码c++

霍夫曼编码c++

上传者: 2020-07-25 14:54:18上传 CPP文件 2.47KB 热度 17次
霍夫曼编码 c++ // huffman.cpp : Defines the entry point for the console application. // #include #include #include using namespace std; typedef struct _HUFF { char c; int flag; float prob; vector hcode; /* bool operator < (const struct _HUFF &m) const { re
用户评论
码姐姐匿名网友 2020-07-25 14:54:19

针对单一文件直接压缩显示压缩文件后状况