資源描述:
《用哈夫曼樹實(shí)現(xiàn)壓縮解壓》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、用哈夫曼樹實(shí)現(xiàn)壓縮解壓程序是用VC++6.0編譯完成的,可以完成對任意文件的壓縮解壓(為方便尋找,壓縮出的文件與待壓縮文件在同一文件夾中),但壓縮文件夾還不可以,另外該程序還能打印出壓縮時(shí)所建立的哈夫曼樹及哈夫曼編碼。源代碼如下:#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("指令錯(cuò)誤!請重新輸入指令:");}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