资源描述:
《用哈夫曼树实现压缩解压》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、用哈夫曼树实现压缩解压程序是用VC++6.0编译完成的,可以完成对任意文件的压缩解压(为方便寻找,压缩出的文件与待压缩文件在同一文件夹中),但压缩文件夹还不可以,另外该程序还能打印出压缩时所建立的哈夫曼树及哈夫曼编码。源代码如下:#include#include#include#includetypedefstructnode{longw;shortp,l,r;}htnode,*htnp;typedefstructhuffman_code{unsignedcharle
2、n;unsignedchar*codestr;}hufcode;typedefchar**huffmancode;intinitial_files(char*source_filename,FILE**inp,char*obj_filename,FILE**outp);char*create_filename(char*source_filename,char*obj_filename);intcompress(char*source_filename,char*obj_filename);longfrequency_data(FILE*in,l
3、ongfre[]);intsearch_set(htnpht,intn,int*s1,int*s2);intcreate_hftree(longw[],intn,htnodeht[]);intencode_hftree(htnphtp,intn,hufcodehc[]);unsignedcharchars_to_bits(constunsignedcharchars[8]);intwrite_compress_file(FILE*in,FILE*out,htnpht,hufcodehc[],char*source_filename,longsou
4、rce_filesize);intdecompress(char*source_filename,char*obj_filename);voidget_mini_huffmantree(FILE*in,shortmini_ht[][2]);intwrite_decompress_file(FILE*in,FILE*out,shortmini_ht[][2],longbits_pos,longobj_filesize);intd_initial_files(char*source_filename,FILE**inp,char*obj_filena
5、me,FILE**outp);main(){ints;charfilename[10];system("color3F");printf("***************************************");printf("*菜单:*");printf("*1.——————压缩——————*");printf("*2.—————-解压缩—————-*");printf("*0.——————退出——————*");printf("***************************************"
6、);scanf("%d",&s);while(s!=0){getchar();switch(s){case1:puts("请输入待压缩文件路径:");gets(filename);compress(filename,NULL);break;case2:puts("请输入待解压文件路径:");gets(filename);decompress(filename,NULL);break;default:printf("指令错误!请重新输入指令:");}puts("");printf("*******************************
7、********");printf("*菜单:*");printf("*1.——————压缩——————*");printf("*2.—————-解压缩—————-*");printf("*0.——————退出——————*");printf("***************************************");scanf("%d",&s);}}intinitial_files(char*source_filename,FILE**inp,char*obj_filename,FILE**outp){if(f
8、open(source_filename,"rb")==NULL){return-1;}if(obj_filename==NULL){i