欢迎来到天天文库
浏览记录
ID:30249914
大小:47.00 KB
页数:8页
时间:2018-12-27
《霍夫曼编码对英文文本地压缩和解压缩》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实用标准文案Huffman编码对英文文本的压缩和解压缩中国地质大学计算机学院信息安全专业信息论实验报告#include#include#includestructhead{unsignedcharb;//记录字符在数组中的位置longcount;//字符出现频率(权值)longparent,lch,rch;//定义哈夫曼树指针变量charbits[256];//定义存储哈夫曼编码的数组}header[512],tmp;voidcompress(){charfilename[255],outputfile[2
2、55],buf[512];unsignedcharc;longn,m,i,j,f;//作计数或暂时存储数据用longmin1,pt1,flength=0,length1,length2;//记录最小结点、文件长度doublediv;//计算压缩比用FILE*ifp,*ofp;//分别为输入、输出文件指针printf("t请您输入需要压缩的文件(需要路径):");gets(filename);ifp=fopen(filename,"rb");if(ifp==NULL){printf("t文件打开失败!");system("pause");return;
3、}printf("t请您输入压缩后的文件名(如无路径则默认为桌面文件):");gets(outputfile);ofp=fopen(outputfile,"wb");if(ofp==NULL){printf("t压缩文件失败!");system("pause");return;}flength=0;while(!feof(ifp)){fread(&c,1,1,ifp);header[c].count++;//字符重复出现频率+1flength++;//字符出现原文件长度+1}flength--;精彩文档实用标准文案length1=flength;//
4、原文件长度用作求压缩率的分母header[c].count--;for(i=0;i<512;i++){if(header[i].count!=0)header[i].b=(unsignedchar)i;/*将每个哈夫曼码值及其对应的ASCII码存放在一维数组header[i]中,且编码表中的下标和ASCII码满足顺序存放关系*/elseheader[i].b=0;header[i].parent=-1;header[i].lch=header[i].rch=-1;//对结点进行初始化}for(i=0;i<256;i++){//按出现权值从大到小排序for(j=i
5、+1;j<256;j++){if(header[i].count6、nt!=-1说明该结点已存在哈夫曼树中,跳出循环重新选择新结点*/if(min1>header[j].count){pt1=j;min1=header[j].count;continue;}}header[i].count=header[pt1].count;header[pt1].parent=i;header[i].lch=pt1;min1=999999999;精彩文档实用标准文案for(j=0;jheader[j].count){pt1=j;min1=head7、er[j].count;continue;}}header[i].count+=header[pt1].count;header[i].rch=pt1;header[pt1].parent=i;//哈夫曼无重复前缀编码}for(i=0;i8、its+1,header
6、nt!=-1说明该结点已存在哈夫曼树中,跳出循环重新选择新结点*/if(min1>header[j].count){pt1=j;min1=header[j].count;continue;}}header[i].count=header[pt1].count;header[pt1].parent=i;header[i].lch=pt1;min1=999999999;精彩文档实用标准文案for(j=0;jheader[j].count){pt1=j;min1=head
7、er[j].count;continue;}}header[i].count+=header[pt1].count;header[i].rch=pt1;header[pt1].parent=i;//哈夫曼无重复前缀编码}for(i=0;i8、its+1,header
8、its+1,header
此文档下载收益归作者所有