用哈夫曼樹實(shí)現(xiàn)壓縮解壓

用哈夫曼樹實(shí)現(xiàn)壓縮解壓

ID:39526744

大?。?16.50 KB

頁數(shù):29頁

時(shí)間:2019-07-05

用哈夫曼樹實(shí)現(xiàn)壓縮解壓_第1頁
用哈夫曼樹實(shí)現(xiàn)壓縮解壓_第2頁
用哈夫曼樹實(shí)現(xiàn)壓縮解壓_第3頁
用哈夫曼樹實(shí)現(xiàn)壓縮解壓_第4頁
用哈夫曼樹實(shí)現(xiàn)壓縮解壓_第5頁
資源描述:

《用哈夫曼樹實(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

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時(shí)可能會顯示錯(cuò)亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時(shí)聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請聯(lián)系客服處理。