霍夫曼编码Huffman
0
2021-05-25
代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
// 统计字符频度的临时结点
typedef struct {
unsigned char uch;// 以8bits为单元的无符号字符
unsigned long weight;// 每类(以二进制编码区分)字符出现频度
} TmpNode;
// 哈夫曼树结点
typedef struct {
unsigned char uch;// 以8bits为单元的无符号字符
unsigned long weight;// 每类(以二进制编码区分)字符出现频度
char *code;// 字符对应的哈夫曼编码(动态分配存储空间)
int parent, lchild, rchild;// 定义双亲和左右孩子
} HufNode, *HufTree;
// 选择最小和次小的两个结点,建立哈夫曼树调用
void select(HufNode *huf_tree, unsigned int n, int *s1, int *s2)
{
// 找最小
unsigned int i;
unsigned long min = ULONG_MAX;
for(i = 0; i < n; ++i)
if(huf_tree[i].parent == 0 && huf_tree[i].weight < min)
{
min = huf_tree[i].weight;
*s1 = i;
}
huf_tree[*s1].parent=1; // 标记此结点已被选中
// 找次小
min=ULONG_MAX;
for(i = 0; i < n; ++i)
if(huf_tree[i].parent == 0 && huf_tree[i].weight < min)
{
min = huf_tree[i].weight;
*s2 = i;
}
}
// 建立哈夫曼树
void CreateTree(HufNode *huf_tree, unsigned int char_kinds, unsigned int node_num)
{
unsigned int i;
int s1, s2;
for(i = char_kinds; i < node_num; ++i)
{
select(huf_tree, i, &s1, &s2);// 选择最小的两个结点
huf_tree[s1].parent = huf_tree[s2].parent = i;
huf_tree[i].lchild = s1;
huf_tree[i].rchild = s2;
huf_tree[i].weight = huf_tree[s1].weight + huf_tree[s2].weight;
}
}
// 生成哈夫曼编码
void HufCode(HufNode *huf_tree, unsigned char_kinds)
{
unsigned int i;
int cur, next, index;
char *code_tmp = (char *)malloc(256*sizeof(char));// 暂存编码,最多256个叶子,编码长度不超多255
code_tmp[256-1] = '\0';
for(i = 0; i < char_kinds; ++i)
{
index = 256-1;// 编码临时空间索引初始化
// 从叶子向根反向遍历求编码
for(cur = i, next = huf_tree[i].parent; next != 0;
cur = next, next = huf_tree[next].parent)
if(huf_tree[next].lchild == cur)
code_tmp[--index] = '0';// 左'0'
else
code_tmp[--index] = '1';// 右'1'
huf_tree[i].code = (char *)malloc((256-index)*sizeof(char));// 为第i个字符编码动态分配存储空间
strcpy(huf_tree[i].code, &code_tmp[index]); // 正向保存编码到树结点相应域中
}
free(code_tmp);// 释放编码临时空间
}
// 压缩函数
int compress(char *ifname, char *ofname)
{
unsigned int i, j;
unsigned int char_kinds;// 字符种类
unsigned char char_temp;// 暂存8bits字符
unsigned long file_len = 0;
FILE *infile, *outfile;
TmpNode node_temp;
unsigned int node_num;
HufTree huf_tree;
char code_buf[256] = "\0";// 待存编码缓冲区
unsigned int code_len;
/*
** 动态分配256个结点,暂存字符频度,
** 统计并拷贝到树结点后立即释放
*/
TmpNode *tmp_nodes =(TmpNode *)malloc(256*sizeof(TmpNode));
// 初始化暂存结点
for(i = 0; i < 256; ++i)
{
tmp_nodes[i].weight = 0;
tmp_nodes[i].uch = (unsigned char)i;// 数组的256个下标与256种字符对应
}
// 遍历文件,获取字符频度
infile = fopen(ifname, "rb");
// 判断输入文件是否存在
if (infile == NULL)
return -1;
fread((char *)&char_temp, sizeof(unsigned char), 1, infile);// 读入一个字符
while(!feof(infile))
{
++tmp_nodes[char_temp].weight;// 统计下标对应字符的权重,利用数组的随机访问快速统计字符频度
++file_len;
fread((char *)&char_temp, sizeof(unsigned char), 1, infile);// 读入一个字符
}
fclose(infile);
// 排序,将频度为零的放最后,剔除
for(i = 0; i < 256-1; ++i)
for(j = i+1; j < 256; ++j)
if(tmp_nodes[i].weight < tmp_nodes[j].weight)
{
node_temp = tmp_nodes[i];
tmp_nodes[i] = tmp_nodes[j];
tmp_nodes[j] = node_temp;
}
// 统计实际的字符种类(出现次数不为0)
for(i = 0; i < 256; ++i)
if(tmp_nodes[i].weight == 0)
break;
char_kinds = i;
if (char_kinds == 1)
{
outfile = fopen(ofname, "wb");// 打开压缩后将生成的文件
fwrite((char *)&char_kinds, sizeof(unsigned int), 1, outfile);// 写入字符种类
fwrite((char *)&tmp_nodes[0].uch, sizeof(unsigned char), 1, outfile);// 写入唯一的字符
fwrite((char *)&tmp_nodes[0].weight, sizeof(unsigned long), 1, outfile);// 写入字符频度,也就是文件长度
free(tmp_nodes);
fclose(outfile);
}
else
{
node_num = 2 * char_kinds - 1;// 根据字符种类数,计算建立哈夫曼树所需结点数
huf_tree = (HufNode *)malloc(node_num*sizeof(HufNode));// 动态建立哈夫曼树所需结点
// 初始化前char_kinds个结点
for(i = 0; i < char_kinds; ++i)
{
// 将暂存结点的字符和频度拷贝到树结点
huf_tree[i].uch = tmp_nodes[i].uch;
huf_tree[i].weight = tmp_nodes[i].weight;
huf_tree[i].parent = 0;
}
free(tmp_nodes); // 释放字符频度统计的暂存区
// 初始化后node_num-char_kins个结点
for(; i < node_num; ++i)
huf_tree[i].parent = 0;
CreateTree(huf_tree, char_kinds, node_num);// 创建哈夫曼树
HufCode(huf_tree, char_kinds);// 生成哈夫曼编码
// 写入字符和相应权重,供解压时重建哈夫曼树
outfile = fopen(ofname, "wb");// 打开压缩后将生成的文件
fwrite((char *)&char_kinds, sizeof(unsigned int), 1, outfile);// 写入字符种类
for(i = 0; i < char_kinds; ++i)
{
fwrite((char *)&huf_tree[i].uch, sizeof(unsigned char), 1, outfile);// 写入字符(已排序,读出后顺序不变)
fwrite((char *)&huf_tree[i].weight, sizeof(unsigned long), 1, outfile);// 写入字符对应权重
}
// 紧接着字符和权重信息后面写入文件长度和字符编码
fwrite((char *)&file_len, sizeof(unsigned long), 1, outfile);// 写入文件长度
infile = fopen(ifname, "rb");// 以二进制形式打开待压缩的文件
fread((char *)&char_temp, sizeof(unsigned char), 1, infile); // 每次读取8bits
while(!feof(infile))
{
// 匹配字符对应编码
for(i = 0; i < char_kinds; ++i)
if(char_temp == huf_tree[i].uch)
strcat(code_buf, huf_tree[i].code);
// 以8位(一个字节长度)为处理单元
while(strlen(code_buf) >= 8)
{
char_temp = '\0';// 清空字符暂存空间,改为暂存字符对应编码
for(i = 0; i < 8; ++i)
{
char_temp <<= 1;// 左移一位,为下一个bit腾出位置
if(code_buf[i] == '1')
char_temp = 1;// 当编码为"1",通过或操作符将其添加到字节的最低位
}
fwrite((char *)&char_temp, sizeof(unsigned char), 1, outfile);// 将字节对应编码存入文件
strcpy(code_buf, code_buf+8);// 编码缓存去除已处理的前八位
}
fread((char *)&char_temp, sizeof(unsigned char), 1, infile); // 每次读取8bits
}
// 处理最后不足8bits编码
code_len = strlen(code_buf);
if(code_len > 0)
{
char_temp = '\0';
for(i = 0; i < code_len; ++i)
{
char_temp <<= 1;
if(code_buf[i] == '1')
char_temp = 1;
}
char_temp <<= 8-code_len; // 将编码字段从尾部移到字节的高位
fwrite((char *)&char_temp, sizeof(unsigned char), 1, outfile); // 存入最后一个字节
}
// 关闭文件
fclose(infile);
fclose(outfile);
// 释放内存
for(i = 0; i < char_kinds; ++i)
free(huf_tree[i].code);
free(huf_tree);
}
}//compress
// 解压函数
int extract(char *ifname, char *ofname)
{
unsigned int i;
unsigned long file_len;
unsigned long writen_len = 0;// 控制文件写入长度
FILE *infile, *outfile;
unsigned int char_kinds;// 存储字符种类
unsigned int node_num;
HufTree huf_tree;
unsigned char code_temp;// 暂存8bits编码
unsigned int root;// 保存根节点索引,供匹配编码使用
infile = fopen(ifname, "rb");// 以二进制方式打开压缩文件
// 判断输入文件是否存在
if (infile == NULL){
return -1;
}
// 读取压缩文件前端的字符及对应编码,用于重建哈夫曼树
fread((char *)&char_kinds, sizeof(unsigned int), 1, infile); // 读取字符种类数
if (char_kinds == 1)
{
fread((char *)&code_temp, sizeof(unsigned char), 1, infile); // 读取唯一的字符
fread((char *)&file_len, sizeof(unsigned long), 1, infile); // 读取文件长度
outfile = fopen(ofname, "wb");// 打开压缩后将生成的文件
while (file_len--)
fwrite((char *)&code_temp, sizeof(unsigned char), 1, outfile);
fclose(infile);
fclose(outfile);
}
else
{
node_num = 2 * char_kinds - 1;// 根据字符种类数,计算建立哈夫曼树所需结点数
huf_tree = (HufNode *)malloc(node_num*sizeof(HufNode));// 动态分配哈夫曼树结点空间
// 读取字符及对应权重,存入哈夫曼树节点
for(i = 0; i < char_kinds; ++i)
{
fread((char *)&huf_tree[i].uch, sizeof(unsigned char), 1, infile);// 读入字符
fread((char *)&huf_tree[i].weight, sizeof(unsigned long), 1, infile);// 读入字符对应权重
huf_tree[i].parent = 0;
}
// 初始化后node_num-char_kins个结点的parent
for(; i < node_num; ++i)
huf_tree[i].parent = 0;
CreateTree(huf_tree, char_kinds, node_num);// 重建哈夫曼树(与压缩时的一致)
// 读完字符和权重信息,紧接着读取文件长度和编码,进行解码
fread((char *)&file_len, sizeof(unsigned long), 1, infile);// 读入文件长度
outfile = fopen(ofname, "wb");// 打开压缩后将生成的文件
root = node_num-1;
while(1)
{
fread((char *)&code_temp, sizeof(unsigned char), 1, infile);// 读取一个字符长度的编码
// 处理读取的一个字符长度的编码(通常为8位)
for(i = 0; i < 8; ++i)
{
// 由根向下直至叶节点正向匹配编码对应字符
if(code_temp & 128)
root = huf_tree[root].rchild;
else
root = huf_tree[root].lchild;
if(root < char_kinds)
{
fwrite((char *)&huf_tree[root].uch, sizeof(unsigned char), 1, outfile);
++writen_len;
if (writen_len == file_len) break;// 控制文件长度,跳出内层循环
root = node_num-1; // 复位为根索引,匹配下一个字符
}
code_temp <<= 1;// 将编码缓存的下一位移到最高位,供匹配
}
if (writen_len == file_len) break;// 控制文件长度,跳出外层循环
}
// 关闭文件
fclose(infile);
fclose(outfile);
// 释放内存
free(huf_tree);
}
}//extract()
int main()
{
while(1)
{
printf("朱安杰 194020215\n");
int opt, flag = 0;// 每次进入循环都要初始化flag为0
char ifname[256], ofname[256];// 保存输入输出文件名
// 输入所选择操作类型的数字代号:1:压缩,2:解压,3:退出
printf("请输入操作所对应的数字:\n 1: 压缩\n 2: 解压\n 3: 退出\n");
scanf("%d", &opt);
if (opt == 3)
break;
else
{
printf("请输入输入文件名: ");
fflush(stdin);// 清空标准输入流,防止干扰gets函数读取文件名
gets(ifname);
printf("请输入输出文件名: ");
fflush(stdin);
gets(ofname);
}
switch(opt)
{
case 1: printf("压缩中……\n");
flag = compress(ifname, ofname);// 压缩,返回值用于判断是否文件名不存在
break;
case 2: printf("解压中……\n");
flag = extract(ifname, ofname);// 解压,返回值用于判断是否文件名不存在
break;
}
if (flag == -1)
printf("抱歉, 文件 \"%s\" 不存在!\n", ifname);// 如果标志为'-1'则输入文件不存在
else
printf("操作完成!\n");// 操作完成
}
return 0;
总结:
在霍夫曼编码这个实验中,我们需要将输入的任意一个源,运用Huffman编码压缩技术进行压缩,除此之外,我们还需要将压缩好的文件还原为原来的文件(即解压)。既然需要用哈夫曼编码解决问题,首先我们需将文件中出现的字符以及它们出现的次数写入配置文件中,构建哈夫曼树,而在构建哈夫曼树时,需要选出所给数据中最小的两个一步步的搭建,这是此次实验中要解决的一个问题之一。建好Huffman树后,要根据“左0右1”的方法对树进行编码,在这两个过程中,需要把文件当做“符号”来看待,“符号”确定为多少个也是值得思考的问题。做好哈夫曼树的构建以及哈夫曼编码后,我们需要在压缩文件中按顺序存入每个字符的Huffman编码对文件进行压缩。对于解压缩,我们需要利用配置文件重构Huffman树,那么这棵树如何重构也是有待于解决的。最后就是用主函数调用所有函数完成整个过程了,当然在主函数里,我们还需要利用分支来区分到底是压缩还是解压缩文件,有利于用户的选择。通过编写与学习huffman编码压缩与解压文件,我更清楚的认识了huffma编码的具体压缩程度,与压缩在实际之中的用法。也会在接下来的学习中有更多的思路。