霍夫曼编码c++

时间:2014-11-22 13:23:12
【文件属性】:

文件名称:霍夫曼编码c++

文件大小:2KB

文件格式:CPP

更新时间:2014-11-22 13:23:12

霍夫曼编码 c++

霍夫曼编码 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 { return prob < m.prob; } */ }HUFF;


网友评论

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