IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> Algorithm第四版算法 C++实现(二十九)——霍夫曼(Huffman)压缩(文件压缩机制) -> 正文阅读

[C++知识库]Algorithm第四版算法 C++实现(二十九)——霍夫曼(Huffman)压缩(文件压缩机制)

霍夫曼压缩真的式一个非常经典又非常优雅的算法。不知道大家是否都会求霍夫曼树。哈夫曼树是带权路径长度最短的树,权值较大的结点离根较近。如果清楚的话,建议先去看一下霍夫曼树。他的原理是,将数据从小到大排序,将最小的两个生成一棵树,其权为二者的和。然后将其加入到队列中与其他的比较并继续此过程。
然后我们可以根据生成的树来获取前缀码。
在这里插入图片描述
然后用这些代码代替原本的数据。

class huffman
{
private:
	const static int r = 256;
	int freq[256] = {};
	std::string st[256];
	struct node
	{
		int index;
		int times;
		node *right;
		node *left;
		node()
		{

		};
		node(int a, int b, node *r, node *l)
		{
			index = a;
			times = b;
			right = r;
			left = l;
		}
	};
	node *create_node(int a, int b, node *r, node *l)
	{
		node *newnode = new node;
		newnode->index = a;
		newnode->times = b;
		newnode->right = r;
		newnode->left = l;
		return newnode;
	}
	node *x, *y,*p;
	static bool comp(node a, node b)
	{
		return a.times > b.times;
	}
	node built_tire()
	{
		std::vector<node> pq;
		for (int i = 0; i < r; i++)
		{
			if (freq[i] > 0)
			{
				//printf("%d ", i);
				node newnode(i,freq[i],nullptr,nullptr);
				pq.push_back(newnode);
			}
		}
		//printf("%d", pq.size());
		std::sort(pq.begin(), pq.end(), comp);
		while (pq.size()>1)
		{
			x = &pq.back();
			pq.pop_back();
			y = &pq.back();
			pq.pop_back();
			p = create_node(0, x->times + y->times, x, y);
			pq.push_back(*p);
			std::sort(pq.begin(), pq.end(), comp);
		}
		return pq.back();
	}
	void built_code(node x, std::string s)
	{
		if (x.left == nullptr&&x.right == nullptr)
		{
			st[x.index] = s;
			std::cout << x.index << std::endl;
			return;
		}
		//printf("%d %d %d", x.times, x.left->times,x.right->times);
		built_code( *x.left, s + '0');
		built_code( *x.right, s + '1');
	}
public:
	void compress(std::string s)
	{
		
		for (int i = 0; i < s.length(); i++)
		{
			freq[s[i]]++;
		}
		std::vector<node> pq;
		for (int i = 0; i < r; i++)
		{
			if (freq[i] > 0)
			{
				//printf("%d ", i);
				node newnode(i, freq[i], nullptr, nullptr);
				pq.push_back(newnode);
			}
		}
		//printf("%d", pq.size());
		std::sort(pq.begin(), pq.end(), comp);
		while (pq.size() > 1)
		{
			x = create_node(pq.back().index, pq.back().times, pq.back().left, pq.back().right);
			pq.pop_back();
			y = create_node(pq.back().index, pq.back().times, pq.back().left, pq.back().right);
			pq.pop_back();
			p=new node(0, x->times + y->times, x, y);
			pq.push_back(*p);
			std::sort(pq.begin(), pq.end(), comp);
		}
		node root = pq.back();
		//node root = built_tire();
		//node *t = root.left;
		built_code(root,"");
		std::cout << s << std::endl;
		for (int i = 0; i < s.length(); i++)
		{
			std::string code = st[s[i]];
			std::cout << code;
		}
	}
};

文本

  1. destructors of objects with static storage duration are called in reverse order of completion of their constructors or the completion of their dynamic initialization, and the functions passed to std::atexit are called in reverse order they are registered (last one first).
    a) any static objects whose initialization was completed before the call to std::atexit for some function F will be destroyed after the call to F during program termination.
    b) any static objects whose construction began after the call to std::atexit for some function F will be destroyed before the call to F during program termination (this includes the case where std::atexit was called from the constructor of the static object)

P.S.上述文字出自C++reference。

运行结果

在这里插入图片描述
看在孩子今天敲代码敲了四个多小时到23.26的面子上,给个赞吧

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-29 08:54:26  更:2021-08-29 08:54:44 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年12日历 -2024/12/27 21:19:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码
数据统计