文章目录

  • 思路
  • 相关功能实现
    • 结构体的定义
    • 函数申明
    • 读入文件
    • 统计次数
    • 展示次数
    • 创建哈夫曼树
    • 选择权重最小的两个节点
    • 创建哈夫曼编码
    • 将读入的文件编码,写到txt文件中
    • 读入编码文件,解码
  • 完整代码实现
  • 测试样例

代码转自涂然哥,只做整理和略微修改

思路

1.输入一个字符串后统计每个字符出现的次数(频率)
2.接下来按照规则构造一棵哈夫曼树
3.然后01编码(即给每个字符赋予一个01组成的字符串)
4.将我们输入的字符串按照编码规则生成01字符串
5.解码:将字符串的01编码按照规则还原并输出

相关功能实现

结构体的定义

/*记录每个字符出现的次数*/
typedef struct wordcnt
{char ch;int cnt=0;
}Count;/*整个字符串的字符构成*/
typedef struct NumCount
{Count count[MaxSize];int length=0;
}NumCount;/*核心哈夫曼树*/
typedef struct HTree
{char data;int weight;int parent,lchild,rchild;
}HTNode,*HuffmanTree;/*树的节点的编码*/
typedef struct HCode
{char data;char* str;
}*HuffmanCode;

函数申明

void ReadData(char *source);  // 读入文件
void WordCount(char *data,NumCount *paraCnt); // 统计次数
void Show(NumCount *paraCnt);   // 展示次数
void CreateHuffmanTree(HuffmanTree &HT,int length,NumCount cntarray);  // 创建哈夫曼树
void select(HuffmanTree HT,int top,int *s1,int *s2);  // 选择权重最小的两个节点
void CreateHuffmanCode(HuffmanTree HT,HuffmanCode &HC,int length);  // 创建哈夫曼编码
void Encode(char *data,HuffmanCode HC,int length);  // 将读入的文件编码,写到txt文件
void Decode(HuffmanTree HT,int length);  //读入编码文件,解码

读入文件

将我们需要压缩的字符串从文件读入到数组中

void ReadData(char *source)
{//打开文件读入数据 ifstream infile;infile.open("in.txt");cout<<"Reading..."<<endl;cout<<"the input file is:"<<endl;infile.getline(source,MaxSize);cout<<source<<endl;infile.close();cout<<endl;
}

统计次数

统计读入的字符串中每个字符分别出现多少次

void WordCount(char* data,NumCount* paraCnt)
{int flag;int len=strlen(data);for(int i=0;i<len;++i){flag=0;for(int j=0;j<paraCnt->length;++j){if(data[i]==paraCnt->count[j].ch){++paraCnt->count[j].cnt;flag=1;break;}}if(flag==0){paraCnt->count[paraCnt->length].ch=data[i];++paraCnt->count[paraCnt->length].cnt;++paraCnt->length;}}
}

展示次数

将每个字符及其出现的次数输出

void Show(NumCount* paraCnt)
{cout<<"the length is "<<paraCnt->length<<endl;for(int i = 0;i < paraCnt->length;++i){cout<<"The character "<<paraCnt->count[i].ch<<"  appears  "<<paraCnt->count[i].cnt<<endl;}cout<<endl;
}

创建哈夫曼树

核心哈夫曼树的构造,此处会多次调用select函数找到权重最小的两个节点

void CreateHuffmanTree(HuffmanTree &HT,int length,NumCount cntarray)
{if(length<=1)printf("ERROR!!!\r\n");int s1,s2;int m = length*2-1;  // 没有度为1的节点,则总结点是2*叶子节点数-1个 HT = new HTNode[m+1];for(int i = 1;i <= m;++i)  // 初始化 {HT[i].parent = 0;HT[i].lchild = 0;HT[i].rchild = 0;}for(int i = 1;i <= length;++i) {HT[i].data = cntarray.count[i-1].ch;HT[i].weight = cntarray.count[i-1].cnt;}for(int i = length + 1;i <= m;++i){select(HT,i-1,&s1,&s2);  // 从前面的范围里选择权重最小的两个节点 HT[s1].parent = i;HT[s2].parent = i;HT[i].lchild = s1;HT[i].rchild = s2;HT[i].weight = HT[s1].weight + HT[s2].weight;  // 得到一个新节点 }
}

选择权重最小的两个节点

void select(HuffmanTree HT,int top,int* s1,int* s2)
{int min = INT_MAX;for(int i = 1;i <= top;++i)  // 选择没有双亲的节点中,权重最小的节点 {if(HT[i].weight < min && HT[i].parent == 0){min = HT[i].weight;*s1 = i;}}min = INT_MAX;for(int i = 1;i <= top;++i)  // 选择没有双亲的节点中,权重次小的节点 {if(HT[i].weight < min && i != *s1 && HT[i].parent == 0){min = HT[i].weight;*s2 = i;}}
}

创建哈夫曼编码

将哈夫曼树中的每一个非空节点生成一个对应的01编码

void CreateHuffmanCode(HuffmanTree HT,HuffmanCode &HC,int length)
{HC = new HCode[length+1];char *cd = new char[length];  // 存储编码的临时空间 cd[length-1] = '\0';  // 方便之后调用strcpy函数 int c,f,start;for(int i = 1;i <= length;++i){start = length-1;  // start表示编码在临时空间内的起始下标,由于是从叶子节点回溯,所以是从最后开始 c = i;f = HT[c].parent;while(f != 0){--start;  // 由于是回溯,所以从临时空间的最后往回计 if(HT[f].lchild == c)cd[start] = '0';else cd[start] = '1';c = f;f = HT[c].parent;}HC[i].str = new char[length-start];  // 最后,实际使用的编码空间大小是length-start HC[i].data = HT[i].data;strcpy(HC[i].str,&cd[start]);  // 从实际起始地址开始,拷贝到编码结构中 }delete[] cd;
}

将读入的文件编码,写到txt文件中

void Encode(char* data,HuffmanCode HC,int length)
{ofstream outfile;outfile.open("code.txt");for(int i = 0;i < strlen(data);++i)  // 依次读入数据,查找对应的编码,写入编码文件 {for(int j = 1;j <= length;++j){if(data[i] == HC[j].data){outfile<<HC[j].str;}}}outfile.close();cout<<"the code txt has been written"<<endl;cout<<endl;
}

读入编码文件,解码

void Decode(HuffmanTree HT,int length)
{char codetxt[MaxSize*length];ifstream infile;infile.open("code.txt");infile.getline(codetxt,MaxSize*length);infile.close();ofstream outfile;outfile.open("out.txt");int root = 2*length-1;  // 从根节点开始遍历 for(int i = 0;i < strlen(codetxt);++i){if(codetxt[i] == '0') root = HT[root].lchild;  //为0表示向左遍历 else if(codetxt[i] == '1') root = HT[root].rchild; //为1表示向右遍历 if(HT[root].lchild == 0 && HT[root].rchild == 0)  // 如果已经是叶子节点,输出到输出文件中,然后重新回到根节点 {outfile<<HT[root].data;root = 2*length-1;}}outfile.close();cout<<"the output txt has been written"<<endl;cout<<endl;
}

完整代码实现

#include <iostream>
#include <fstream>
#include <string.h>
using namespace std; #define MaxSize 1024typedef struct wordcnt
{char ch;int cnt=0;
}Count;typedef struct NumCount
{Count count[MaxSize];int length=0;
}NumCount;typedef struct HTree
{char data;int weight;int parent,lchild,rchild;
}HTNode,*HuffmanTree;typedef struct HCode
{char data;char* str;
}*HuffmanCode;void ReadData(char *source);  // 读入文件
void WordCount(char *data,NumCount *paraCnt); // 统计次数
void Show(NumCount *paraCnt);   // 展示次数
void CreateHuffmanTree(HuffmanTree &HT,int length,NumCount cntarray);  // 创建哈夫曼树
void select(HuffmanTree HT,int top,int *s1,int *s2);  // 选择权重最小的两个节点
void CreateHuffmanCode(HuffmanTree HT,HuffmanCode &HC,int length);  // 创建哈夫曼编码
void Encode(char *data,HuffmanCode HC,int length);  // 将读入的文件编码,写到txt文件
void Decode(HuffmanTree HT,int length);  //读入编码文件,解码 int main(int argc, char** argv) {char data[MaxSize];  NumCount Cntarray;ReadData(data);  // 读入数据 WordCount(data,&Cntarray);  // 统计次数 Show(&Cntarray); //可以查看每个单词出现的对应次数 HuffmanTree tree;CreateHuffmanTree(tree,Cntarray.length,Cntarray);  // 建树 HuffmanCode code;  CreateHuffmanCode(tree,code,Cntarray.length);  // 创建编码 Encode(data,code,Cntarray.length);  // 生成编码文件 Decode(tree,Cntarray.length);  // 解码 cout<<"Please view the generated TXT file to check the result"<<endl; return 0;
}void ReadData(char *source)
{//打开文件读入数据 ifstream infile;infile.open("in.txt");cout<<"Reading..."<<endl;cout<<"the input file is:"<<endl;infile.getline(source,MaxSize);cout<<source<<endl;infile.close();cout<<endl;
}void WordCount(char *data,NumCount *paraCnt)
{int flag;// 标识是否已经记录 int len = strlen(data);for(int i = 0;i < len;++i){flag = 0;for(int j = 0;j < paraCnt->length;++j){if(paraCnt->count[j].ch == data[i]) // 若已有记录,直接++ {++paraCnt->count[j].cnt;flag = 1;break;}}if(!flag) // 没有记录,则新增 {paraCnt->count[paraCnt->length].ch = data[i];++paraCnt->count[paraCnt->length].cnt;++paraCnt->length;}}
}void Show(NumCount* paraCnt)
{cout<<"the length is "<<paraCnt->length<<endl;for(int i = 0;i < paraCnt->length;++i){cout<<"The character "<<paraCnt->count[i].ch<<"  appears  "<<paraCnt->count[i].cnt<<endl;}cout<<endl;
}void CreateHuffmanTree(HuffmanTree &HT,int length,NumCount cntarray)
{if(length<=1)printf("ERROR!!!\r\n");int s1,s2;int m = length*2-1;  // 没有度为1的节点,则总结点是2*叶子节点数-1个 HT = new HTNode[m+1];for(int i = 1;i <= m;++i)  // 初始化 {HT[i].parent = 0;HT[i].lchild = 0;HT[i].rchild = 0;}for(int i = 1;i <= length;++i) {HT[i].data = cntarray.count[i-1].ch;HT[i].weight = cntarray.count[i-1].cnt;}for(int i = length + 1;i <= m;++i){select(HT,i-1,&s1,&s2);  // 从前面的范围里选择权重最小的两个节点 HT[s1].parent = i;HT[s2].parent = i;HT[i].lchild = s1;HT[i].rchild = s2;HT[i].weight = HT[s1].weight + HT[s2].weight;  // 得到一个新节点 }
}void select(HuffmanTree HT,int top,int* s1,int* s2)
{int min = INT_MAX;for(int i = 1;i <= top;++i)  // 选择没有双亲的节点中,权重最小的节点 {if(HT[i].weight < min && HT[i].parent == 0){min = HT[i].weight;*s1 = i;}}min = INT_MAX;for(int i = 1;i <= top;++i)  // 选择没有双亲的节点中,权重次小的节点 {if(HT[i].weight < min && i != *s1 && HT[i].parent == 0){min = HT[i].weight;*s2 = i;}}
}void CreateHuffmanCode(HuffmanTree HT,HuffmanCode &HC,int length)
{HC = new HCode[length+1];char *cd = new char[length];  // 存储编码的临时空间 cd[length-1] = '\0';  // 方便之后调用strcpy函数 int c,f,start;for(int i = 1;i <= length;++i){start = length-1;  // start表示编码在临时空间内的起始下标,由于是从叶子节点回溯,所以是从最后开始 c = i;f = HT[c].parent;while(f != 0){--start;  // 由于是回溯,所以从临时空间的最后往回计 if(HT[f].lchild == c)cd[start] = '0';else cd[start] = '1';c = f;f = HT[c].parent;}HC[i].str = new char[length-start];  // 最后,实际使用的编码空间大小是length-start HC[i].data = HT[i].data;strcpy(HC[i].str,&cd[start]);  // 从实际起始地址开始,拷贝到编码结构中 }delete[] cd;
}void Encode(char* data,HuffmanCode HC,int length)
{ofstream outfile;outfile.open("code.txt");for(int i = 0;i < strlen(data);++i)  // 依次读入数据,查找对应的编码,写入编码文件 {for(int j = 1;j <= length;++j){if(data[i] == HC[j].data){outfile<<HC[j].str;}}}outfile.close();cout<<"the code txt has been written"<<endl;cout<<endl;
}void Decode(HuffmanTree HT,int length)
{char codetxt[MaxSize*length];ifstream infile;infile.open("code.txt");infile.getline(codetxt,MaxSize*length);infile.close();ofstream outfile;outfile.open("out.txt");int root = 2*length-1;  // 从根节点开始遍历 for(int i = 0;i < strlen(codetxt);++i){if(codetxt[i] == '0') root = HT[root].lchild;  //为0表示向左遍历 else if(codetxt[i] == '1') root = HT[root].rchild; //为1表示向右遍历 if(HT[root].lchild == 0 && HT[root].rchild == 0)  // 如果已经是叶子节点,输出到输出文件中,然后重新回到根节点 {outfile<<HT[root].data;root = 2*length-1;}}outfile.close();cout<<"the output txt has been written"<<endl;cout<<endl;
}

测试样例

输入:in.txt
In my lifetime, I will be a sincere person and never give up my love and dedication to life. I will live an infinite life in a limited time and space.
输出
the input file is:
In my lifetime, I will be a sincere person and never give up my love and dedication to life. I will live an infinite life in a limited time and space.
the length is 24
The character I appears 3
The character n appears 12
The character appears 30
The character m appears 5
The character y appears 2
The character l appears 10
The character i appears 18
The character f appears 4
The character e appears 18
The character t appears 6
The character , appears 1
The character w appears 2
The character b appears 1
The character a appears 8
The character s appears 3
The character c appears 3
The character r appears 3
The character p appears 3
The character o appears 4
The character d appears 6
The character v appears 4
The character g appears 1
The character u appears 1
The character . appears 2
the code txt has been written
the output txt has been written
Please view the generated TXT file to check the result

C++实现哈夫曼编码相关推荐

  1. 可逼近信道容量编码技术之霍夫曼编码的实现

    可逼近信道容量编码技术之霍夫曼编码的实现 简介 在当今信息爆炸时代,如何采用有效的数据压缩技术来节省数据文件的存储空间和计算机网络的传送时间已越来越引起人们的重视.哈夫曼编码正是一种应用广泛且非常有效 ...

  2. 数据结构与算法(6-5)二叉树的应用--哈夫曼树与哈夫曼编码

    目录 哈夫曼编码(最优二叉树) 一.优势:缩短电文长度 二.思想: 三.过程: 四.图解实现过程: 五.总代码 哈夫曼编码(最优二叉树) 一.优势:缩短电文长度 二.思想: 获取每个字符出现的频率,用 ...

  3. 哈夫曼树的生成及哈夫曼编码

    首先构造哈夫曼树结构体,初始化哈夫曼树的四个无符号整型域,输入文本,统计各个字符的权值,然后构建哈夫曼树,从根到叶子逆向求哈夫曼树的编码. #include"stdio.h" #i ...

  4. 哈夫曼树哈夫曼编码(已知A,B,C,D,E,F,G的概率分别为:17,25,50,67,40,60,30.画出其哈夫曼树和每个字符对应的哈夫曼编码)

    [也可以哈夫曼树与最优不等长编码] 已知A,B,C,D,E,F,G的概率分别为:17,25,50,67,40,60,30.画出其哈夫曼树和每个字符对应的哈夫曼编码.

  5. java中哈夫曼编码所用的函数_数据结构(java语言描述)哈夫曼编码

    原理:哈夫曼编码是根据将已给出的权值作为叶子结点,生成一颗哈夫曼树,然后使得权重最小. 首先生成已给权重的所有的叶子结点,然后取所有节点中最小和次小的结点作为左右孩子生成一个哈夫曼树,计算出父节点的权 ...

  6. 递归求解并生成哈夫曼编码的代码实现

    一开始我用的三叉链表来生成哈夫曼编码,这一点都不递归.后来我想起了一度被递归统治地恐惧,我发现哈夫曼树不仅编码可以简单的用递归来求,树的WPL也可以. 改善后的递归版本如下,虽然WPL也可以通过递归来 ...

  7. 蓝桥哈夫曼树C语言,实验四 哈夫曼树及哈夫曼编码

    实验目的## 掌握哈夫曼树的概念.哈夫曼编码及其应用. 掌握生成哈夫曼树的算法. 会用哈夫曼树对传输报文进行编码. 掌握二叉树的二叉链表存储方式及相应操作的实现. ##实验内容## 用哈夫曼编码进行通 ...

  8. 20172311-哈夫曼编码测试

    20172311-哈夫曼编码测试 哈夫曼编码与哈夫曼树 哈夫曼树 哈夫曼树又称最优二叉树,是一种带权路径长度最短的二叉树.所谓树的带权路径长度,就是树中所有的叶结点的权值乘上其到根结点的路径长度(若根 ...

  9. 【Android 内存优化】Android 原生 API 图片压缩原理 ( 哈夫曼编码开关 | 哈夫曼编码原理 | libjpeg-turbo 函数库 )

    文章目录 一. 哈夫曼编码开关 二. 哈夫曼编码原理 三. libjpeg-turbo 函数库 四. libjpeg-turbo 函数库下载 [Android 内存优化]图片文件压缩 ( Androi ...

  10. 信息论与编码_哈夫曼编码

    哈夫曼树 哈夫曼树(Huffman Tree)也是一种特殊的二叉树,这种树的所有叶子结点都带有权值,从中构造出带权路径长度最短的二叉树,即哈夫曼树. 哈夫曼树的定义 ​ 设二叉树具有n个带权值的叶子结 ...

最新文章

  1. cojs 简单的数位DP 题解报告
  2. HDU4635(强连通分量+Kosaraju算法)
  3. SQL游标的使用与语法
  4. (二)Amazon Lightsail 部署LAMP应用程序之部署单片LAMP应用程序
  5. 解决devenv.exe应用程序错误,应用程序发生异常
  6. 酷安应用市场php源码,酷安应用市场 v11.0.3-999 去广告极限精简版
  7. 软件分析与设计:分析什么?如何设计?
  8. ~~双链表(数据结构)
  9. lopatkin俄大神精简中文系统Windows 10 Enterprise 18362.145 19H1 Release x86-x64 ZH-CN BOX
  10. QT控件 之(TreeView)实现右键菜单栏功能,双击事件能实现区分不同的节点的点击效果
  11. cad刷新快捷键_36个CAD快捷键命令,18个CAD制图技巧,学会轻松玩转CAD
  12. S3C2440 蜂鸣器 汇编语言,S3C2440的基础功能模块实现过程
  13. android进入微信加好友页面,Xposed-微信自动加好友功能实现2--自动跳转验证申请页面...
  14. F.conv2d实现代码
  15. win7计算机自动关机设置在哪里设置方法,Win7小技巧:自动关机怎么设置?
  16. win10wifi开关自动弹回_win10wlan开关自动弹回
  17. 人工智能是引领未来的战略性技术 推动人工智能多学科交叉融合
  18. 3dsmax游戏建模掌握这些技巧方法,6个月学会就业!
  19. 运动场球具的全球与中国市场2022-2028年:技术、参与者、趋势、市场规模及占有率研究报告
  20. 云中的安全api使用云端点espv2 beta运行云功能和应用程序引擎

热门文章

  1. devcon failed 解决办法
  2. 生活中的幽默!有趣的纸上立体插画艺术
  3. 变量+类型转换+键盘扫描器+随机数
  4. WSW中文分词解决方案
  5. 计算机减法函数是哪个,excel2007减法函数怎么用
  6. TCP与UDP协议、socket套接字编程、通信相关操作(cs架构软件)、TCP黏包问题及解决思路
  7. 如何辨别进口净水器质量好坏呢
  8. fork、vfork函数及父进程与子进程
  9. DAC调用INFA命令
  10. 解析jquery的sizzle选择器(一)