資源描述:
《用哈夫曼樹實現壓縮解壓.doc》由會員上傳分享,免費在線閱讀,更多相關內容在行業(yè)資料-天天文庫。
1、用哈夫曼樹實現壓縮解壓程序是用VC++6.0編譯完成的,可以完成對任意文件的壓縮解壓(為方便尋找,壓縮出的文件與待壓縮文件在同一文件夾中),但壓縮文件夾還不可以,另外該程序還能打印出壓縮時所建立的哈夫曼樹及哈夫曼編碼。源代碼如下:#include#include#include#includetypedefstructnode{longw;shortp,l,r;}htnode,*htnp;typedefstructhuffman_code{unsignedcharlen;unsigned
2、char*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,longfre[]);intsearch_
3、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,longsource_filesize);intdecompress(ch
4、ar*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_filename,FILE**outp);main(){ints;charfilename[
5、10];system("color3F");printf("***************************************");printf("*菜單:*");printf("*1.——————壓縮——————*");printf("*2.—————-解壓縮—————-*");printf("*0.——————退出——————*");printf("***************************************");scanf("%d",&s);while(s!=0){getchar();switch(s){c
6、ase1:puts("請輸入待壓縮文件路徑:");gets(filename);compress(filename,NULL);break;case2:puts("請輸入待解壓文件路徑:");gets(filename);decompress(filename,NULL);break;default:printf("指令錯誤!請重新輸入指令:");}puts("");printf("***************************************");printf("*菜單:*");printf("*1.——————壓縮——————*"
7、);printf("*2.—————-解壓縮—————-*");printf("*0.——————退出——————*");printf("***************************************");scanf("%d",&s);}}intinitial_files(char*source_filename,FILE**inp,char*obj_filename,FILE**outp){if(fopen(source_filename,"rb")==NULL){return-1;}if(obj_filename==NULL){i