uvalive2088

题目的意思就是哈夫曼编码问题.

刚开始用建树时,一直出问题 .后来听别人说了一种不用建树的办法.


就是把每个节点的频数和所用编码长度保存下来.

每次两个节点相结合后,那么新节点相应的频数就是两个频数相加,而总的编码长度就为之前两个频数之和加上两个长度之和.

计算到最后一个时,它对应的频数便是我们要求的.


然后输出就好.

三个输出是如果每个字母都用八字节的编码长度(字符串长度乘8) ,我们刚才求的编码长度. 和两个的比值.


AC代码:


#include <cstdio>
#include <cstring>
#include <string>
#include <queue>
#include <iostream>
using namespace std;

struct node {
	int num;
	int len;
	bool friend operator < (const node& a, const node& b) {
		return a.num > b.num;
	}
}a[27];

string s;
priority_queue<node> q;

int main() {
	while (cin >> s && s != "END") {
		while (!q.empty())
			q.pop();
		memset(a, 0, sizeof(a));
		int l = s.size();
		for (int i = 0; i < l; i++)
			if (s[i] == '_')
				a[26].num++;
			else
				a[s[i] - 'A'].num++;
		for (int i = 0; i < 27; i++)
			if (a[i].num)
				q.push(a[i]);
		node tmp, t1, t2;
		if (q.size() == 1) {
			printf("%d %d 8.0\n", l * 8, l);
			continue;
		}
		while (q.size() != 1) {
			t1 = q.top();
			q.pop();
			t2 = q.top();
			q.pop();
			tmp.num = t1.num + t2.num;
			tmp.len = tmp.num + t1.len + t2.len;
			q.push(tmp);
		}
		printf("%d %d %.1lf\n", l * 8, tmp.len, double(l * 8) / tmp.len);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值