哈夫曼树实现并得到哈夫曼编码

哈夫曼编码的详细内容可以看这个大佬:哈夫曼(huffman)树和哈夫曼编码

#include 

using namespace std;

typedef struct Node* node;

struct Node{
	int value;
	char tx;
	node left,right;
	Node(){
		value = 0;
		left = right = NULL;
	}
};

struct cmp{
	bool operator()(node a,node b){
		return a->value > b->value;
	}
};

priority_queue,cmp> Q;

string text;

map book;

inline void CheckOne(){
	map::iterator it;
	int num = 0;
	for(it=book.begin() ; it!=book.end() ; ++it){
		printf("%d: %c---%d\n",++num,(*it).first,(*it).second);
	}
}

node Solved(node a,node b){
	node c = new Node();
	c->value = a->value + b->value;
	c->left = a;
	c->right = b;
	return c;
}

inline void Q_Push(){
	map::iterator it;
	for(it=book.begin() ; it!=book.end() ; ++it){
		node p = new Node();
		p->value = (*it).second;
		p->tx = (*it).first;
		Q.push(p);
	}
}

void getCode(node rt,string code){
	if(rt->left == NULL && rt->right == NULL){
		cout << rt->tx << ": " << code <left,code+'0');
	getCode(rt->right,code+'1');
}

inline void init(){
	book.clear();
	while(!Q.empty())Q.pop();
}

int main(){
	
	init();
	cin >> text;//读入文本串 
	for(int i=0 ; i 1){
		A = Q.top();
		Q.pop();
		B = Q.top();
		Q.pop();
		Q.push(Solved(A,B)); 
	}
	node rt = Q.top();
	Q.pop();
	getCode(rt,"");//得到各字符对应的HuffmanCode 
	
	return 0;
}

 

你可能感兴趣的:(数据结构基础汇总)