ZOJ1117 POJ1521 HDU1053 Huffman编码

举报
xindoo 发表于 2022/04/16 00:39:36 2022/04/16
【摘要】 题目链接      Description An entropy encoder is a data encoding method that achieves lossless data compression by encoding a message with "wasted" ...

题目链接

    

Description

An entropy encoder is a data encoding method that achieves lossless data compression by encoding a message with "wasted" or "extra" information removed. In other words, entropy encoding removes information that was not necessary in the first place to accurately encode the message. A high degree of entropy implies a message with a great deal of wasted information; english text encoded in ASCII is an example of a message type that has very high entropy. Already compressed messages, such as JPEG graphics or ZIP archives, have very little entropy and do not benefit from further attempts at entropy encoding. …………………………

 

    题意是输入一字符串,然后进行Huffman编码,输出原字符串所占的长度,编码后所占的长度,以及两个长度之间的比值。

    Huffman编码的思想就是贪心,我们这里使用stl里的优先队列,priority_queue使用堆进行优化,虽然自己也可以写一个堆,但我感觉对于这道题有点主次不分了,再次感觉到stl确实是一个很强大的东西。

   解题代码


  
  1. //ZOJ1117 POJ1521 HDU1053 Huffman编码
  2. #include <stdio.h>
  3. #include <queue>
  4. #include <string.h>
  5. #include <vector>
  6. using namespace std;
  7. char str[500];
  8. int cnt[260];
  9. struct cmp
  10. {
  11. bool operator()(int a, int b)
  12. {
  13. return a > b;
  14. }
  15. };
  16. /*我们可以直接priority_queue<int> 这样它默认的是使用vector<int> 并且是大的优先
  17. 这里我们刚好相反,用小的优先,所以要自定义优先级cmp, 这个也可以使用类来实现
  18. class cmp
  19. {
  20. public:
  21. bool operator() (int a, int b)
  22. {
  23. return a > b;
  24. }
  25. };
  26. */
  27. priority_queue <int, vector<int>, cmp> q;
  28. int main()
  29. {
  30. while (scanf("%s",str) && strcmp(str,"END"))
  31. {
  32. int l = strlen(str);
  33. memset(cnt, 0, sizeof(cnt));
  34. //我们不需要清空队列,因为每次操作完后它都被清空了
  35. for (int i = 0; i < l; i++)
  36. {
  37. cnt[str[i]]++;
  38. }
  39. for (int i = 0; i < 260; i++)
  40. {
  41. if (cnt[i])
  42. {
  43. q.push(cnt[i]);
  44. }
  45. }
  46. int nl = 0;
  47. if (q.size() == 1)
  48. nl = l;
  49. while (q.size() > 1)
  50. {
  51. int a = q.top(); q.pop();
  52. int b = q.top(); q.pop();
  53. q.push(a+b);
  54. nl += (a+b);
  55. //我想看到这也许会有些疑惑,为什么要加(a+b),稍微思考一下就明白了
  56. }
  57. q.pop();
  58. printf("%d %d %.1lf\n",8*l, nl, (double)(8*l)/(double)nl);
  59. }
  60. return 0;
  61. }


 

文章来源: xindoo.blog.csdn.net,作者:xindoo,版权归原作者所有,如需转载,请联系作者。

原文链接:xindoo.blog.csdn.net/article/details/8761488

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。