POJ 1521 熵 定长编码和变长编码的比较(huffman)

该博客探讨了如何使用C++和STL中的优先级队列来计算字符的Huffman编码长度与ASCII编码长度,并进行比较。文章指出,Huffman编码的总长度可以表示为字符频率与其编码长度乘积之和,在实现中需要注意Huffman树的构建和输出格式的控制。
摘要由CSDN通过智能技术生成
#include<iostream>
#include<queue>
#include<string>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<fstream>

using namespace std;

int main()
{
	string text;
    int count[128];

	while (cin >> text && text != "END")
	{
		int i;
		int n = text.size();
		memset(count, 0, sizeof count);
		for (i = 0; i < n; i++)
		{
			count[text[i]]++;
		}

		priority_queue<int, vector<int>, greater<int> > que;

		for (i = 0; i <= 127; i++)
		{
			if (count[i] != 0)
			{
				que.push(count[i]);
			}
		}
		int asclen, hfmlen;
		asclen = n * 8;
		hfmlen = 0;
		if (que.size() == 1) /* only one char appear */
		{
			hfmlen = que.top();
			que.pop();
	//		cout << asclen << " " << hfmlen << " " << (float)asclen / hfmlen << "\n";
			printf("%d %d 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值