Huffman和Priority_queue 解决POJ 1521
摘要:
题目:http://poj.org/problem?id=1521题目大意:给定字符串,求哈夫曼编码长和它与等长编码的比值做这道题目的时候wrang了好几次,但是,经过调试之后,我彻底了解了哈夫曼树的过程说来相当有价值了。在下面我也会分享出来的。View Code #include <iostream> #include "cstdio"#include "string"#include "cstring"#include <queue> using namespace std; struct Num{ int 阅读全文
posted @ 2011-09-25 22:06 More study needed. 阅读(313) 评论(0) 推荐(0) 编辑