ZOJ 1117 Entropy(哈夫曼编码)
按照普通的哈夫曼编码来做就可以,只有一个字符的时候要特殊处理下#include #include #include #include #include #include using namespace std;const int maxn=1010;char text[maxn];int cnt[maxn],father[maxn];struct node{ int p,