C++实现哈夫曼树的编码和译码

(1)问题描述

输入一串字符串,根据给定的字符串中字符出现的频率建立相应的哈夫曼树,构造哈夫曼编码表,在此基础上可以对压缩文件进行压缩(即编码),同时可以对压缩后的二进制编码文件进行解压(即译码)。

(2)输入要求

多组数据,每组数据1行,为一个字符串(只考虑26个小写字母即可)。当输入字符串为“0”时,输入结束。

(3)输出要求

每组数据输出2n+3行(n为输入串中字符类别的个数。第1行为统计出来的字符出现频率(只输出存在的字符,格式为:字符:频度),每两组字符之间用一个空格分隔,字符按照 ASCII 码从小到大的顺序排列。第2行至第2n行为哈夫曼树的存储结构的终态,如主教材139页表5.2(b),一行当中的数据用空格分隔。第2n+1行为每个字符的哈夫曼编码(只输出存在的字符,格式为:

字符:编码),每两组字符之间用一个空格分隔,字符按照ASCII码从小到大的顺序排列。第2n+2行为编码后的字符串,第2n+3行为解码后的字符串(与输入的字符串相同)。

(4)输入样式

aaaaaaabbbbbccdddd (案例1)

aabccc            (案例2)

0

(5)输出样例

a:7  b:5  c:2  d:4   (案例1)

1  7  7  0  0

2  5  6  0  0

3  2  5  0  0

4  4  5  0  0

5  6  6  3  4

6  11  7  2  5

7  18  0  1  6
 a:0   b:10   c:110   d:111 
00000001010101010110110111111111111

aaaaaaabbbbbccdddd 
a:2   b:l   c:3      (案例2)
1  2  4  0  0

2  1  4  0  0

3  3  5  0  0

4  3  5  2  1

5  6  0  3  4

a:11   b:10   c:0

111110000
 aabccc

代码:

#include <iostream>
#include <map>
#include <string>
#include <vector>
using namespace std;
const int INF = 65535;

//哈夫曼树
typedef struct Node {
	int weight;
	int parent;
	int lchild;
	int rchild;
}*HuffmanTree;

//哈夫曼编码
typedef struct Code {
	char data;
	int weight;
	string code;
}*HuffmanCode;

void initTree(HuffmanTree& tree, HuffmanCode& code, map<char, int> m, int n);
void Select(HuffmanTree& tree, int& a, int& b, int n);
void createHuffmanTree(HuffmanTree& tree, int n);
void HuffCode(HuffmanTree& tree, HuffmanCode& code, int n);
string HuffDeCode(HuffmanCode& code, string s, int n);
void printTest(HuffmanTree tree, HuffmanCode code, string s, map<char, int> m, int n);

int main()
{
	vector<string> vec;
	string s;
	string arr = "";
	cout << "请输入待编码的字符串(以0结束):" << endl;//aaaaaaabbbbbccdddd
	while (true)
	{
		getline(cin, s);//获取包含空格的字符串
		if (s == "0")
			break;
		vec.push_back(s);
	}
	for (int i = 0; i < vec.size(); i++)
	{
		cout << endl;
		cout << "字符串" << i + 1 << endl;
		s = vec[i];
		map<char, int> m;//内部自动排序,并且不允许有重复元素
		for (int i = 0; i < s.size(); i++)//统计字符串中各个字符出现的次数
		{
			m[s[i]]++;
		}
		int n = m.size();
		HuffmanTree tree = new Node[2 * n];
		HuffmanCode code = new Code[n + 1];
		initTree(tree, code, m, n);
		createHuffmanTree(tree, n);
		HuffCode(tree, code, n);
		printTest(tree, code, s, m, n);
	}
	return 0;
}

//初始化参数
void initTree(HuffmanTree& tree, HuffmanCode& code, map<char, int> m, int n)
{
	//初始化权重、父子节点值
	map<char, int>::iterator it;
	it = m.begin();
	for (int i = 1; i <= 2 * n - 1; i++)
	{
		if (i <= n)
		{
			tree[i].weight = it->second;
			code[i].weight = it->second;
			code[i].data = it->first;
			it++;
		}
		else
		{
			tree[i].weight = 0;
		}
		tree[i].parent = tree[i].lchild = tree[i].rchild = 0;
	}
}

//选择两个最小值
void Select(HuffmanTree& tree, int& a, int& b, int n)
{
	int minWeight = INF;
	//寻找最小值 权值最小并且无父节点
	for (int i = 1; i <= n; i++)
	{
		if (tree[i].weight < minWeight && tree[i].parent == 0)
		{
			minWeight = tree[i].weight;
			a = i;
		}
	}
	minWeight = INF;
	//寻找次小值
	for (int i = 1; i <= n; i++)
	{
		if (tree[i].weight < minWeight && tree[i].parent == 0 && i != a)
		{
			minWeight = tree[i].weight;
			b = i;
		}
	}
}

//构建哈夫曼树
void createHuffmanTree(HuffmanTree& tree, int n)
{
	int a, b;
	for (int i = n + 1; i <= 2 * n - 1; i++)//n*n
	{
		Select(tree, a, b, i - 1);//从i-1范围选择两个最小值
		tree[a].parent = i;
		tree[b].parent = i;
		tree[i].lchild = a;
		tree[i].rchild = b;
		tree[i].weight = tree[a].weight + tree[b].weight;
	}
}

//哈夫曼编码
void HuffCode(HuffmanTree& tree, HuffmanCode& code, int n)
{
	string s;
	int j, k;
	for (int i = 1; i <= n; i++)//n*logn
	{
		s = "";
		j = i;
		while (tree[j].parent != 0)//根节点的父节点为0
		{
			k = tree[j].parent;
			if (j == tree[k].lchild)//左孩子为0 右孩子为1
			{
				s += "0";
			}
			else
			{
				s += "1";
			}
			j = tree[j].parent;//向父节点遍历
		}
		reverse(s.begin(), s.end());//逆序s
		code[i].code = s;
	}
}

//哈夫曼解码
string HuffDeCode(HuffmanCode& code, string s, int n)
{
	string res = "";
	string temp = "";
	//方法一 将每个字符形成的字符串与code中保存的每个二进制编码进行对比
	//方法二 可以根据根节点然后找其孩子节点 如果是0 找左孩子 如果是1找有孩子 直到其左右孩子为0为止
	for (int i = 0; i < s.size(); i++)
	{
		temp += s[i];//每个字符都进行对比
		for (int j = 1; j <= n; j++)//与结构体中的编码进行对比
		{
			if (temp == code[j].code)
			{
				res += code[j].data;
				temp = "";
				break;
			}
		}
	}
	return res;
}

//测试
void printTest(HuffmanTree tree, HuffmanCode code, string s, map<char, int> m, int n)
{
	string arr = "";
	cout << "字符串中各个字母出现的频率:" << endl;
	map<char, int>::iterator it;
	for (it = m.begin(); it != m.end(); it++)
	{
		cout << it->first << ":" << it->second << " ";
	}
	cout << endl;
	cout << "哈弗曼树的存储结构终态(权值、父节点、左孩子、右孩子):" << endl;
	for (int i = 1; i <= 2 * n - 1; i++)
	{
		cout << i << " " << tree[i].weight << " " << tree[i].parent << " " << tree[i].lchild << " " << tree[i].rchild << endl;
	}
	cout << "各个字母对应的哈夫曼编码:" << endl;
	for (int i = 1; i <= n; i++)
	{
		cout << code[i].data << ":" << code[i].code << " ";
	}
	cout << endl;
	cout << "字符串对应的哈夫曼编码为:" << endl;
	for (int i = 0; i < s.size(); i++)
	{
		for (int j = 1; j <= n; j++)
		{
			if (s[i] == code[j].data)//匹配编码结构体中的字符,输出对应编码
			{
				cout << code[j].code;
				arr += code[j].code;
				break;
			}
		}
	}
	cout << endl;
	cout << "哈夫曼编码解码为:" << endl;
	cout << HuffDeCode(code, arr, n) << endl;
	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值