哈夫曼樹的應用 哈夫曼編碼

2021-10-10 21:13:22 字數 2911 閱讀 9643

#include

#include

#include

//樹結點定義

typedef

struct

htnode,

*huffmantree;

static

char n[

100]

;//用於儲存正文

//哈弗曼編碼,char型二級指標

typedef

char

**huffmancode;

//封裝最小權結點和次小權結點

typedef

struct

mincode;

//函式宣告

void

error

(char

*message)

;huffmancode huffmancoding

(huffmantree &ht,huffmancode hc,

int*w,

int n)

;mincode select

(huffmantree ht,

int n)

;//當輸入1個結點時的錯誤提示

void

error

(char

*message)

//構造哈夫曼樹ht,編碼存放在hc中,w為權值,n為結點個數

huffmancode huffmancoding

(huffmantree &ht,huffmancode hc,

int*w,

int n)

m=2*n-1;

//哈弗曼編碼需要開闢的結點大小為2n-1

ht=(huffmantree)

malloc

((m+1)

*sizeof

(htnode));

//開闢哈夫曼樹結點空間 m+1 。為了對應關係,我們第0個空間不用。

//初始化n個葉子結點,w[0] = 0,main函式已賦值

for(p=ht,i=

0;i<=n;i++

,p++

,w++

)//將n-1個非葉子結點的初始化

for(

;i<=m;i++

,p++

)//構造哈夫曼樹

for(i=n+

1;i<=m;i++

)//列印哈弗曼樹

printf

("ht list:\n");

printf

("number\t\tweight\t\tparent\t\tlchild\t\trchild\n");

for(i=

1;i<=m;i++

)//從葉子結點到根節點求每個字元的哈弗曼編碼

hc=(huffmancode)

malloc

((n+1)

*sizeof

(char*)

);cd=

(char*)

malloc

(n*sizeof

(char*)

);//為哈弗曼編碼動態分配空間

cd[n-1]

='\0'

;//如:3個結點編碼最長為2。cd[3-1] = '\0';

//求葉子結點的哈弗曼編碼

for(i=

1;i<=n;i++

)//為第i個字元分配編碼空間

hc[i]=(

char*)

malloc

((n-start)

*sizeof

(char*)

);//將當前求出結點的哈弗曼編碼複製到hc

strcpy

(hc[i]

,&cd[start]);

}free

(cd)

;return hc;

}mincode select

(huffmantree ht,

int n)

} secmin =

66666

;//足夠大

//找出權值weight次小的結點,下標儲存在s2中

for(i=

1;i<=n;i++)}

//放進封裝中

code.s1=s1;

code.s2=s2;

return code;

}void

huffmantranslatecoding

(huffmantree ht,

int n,

char

* ch)

else

//1 往右子樹走

++j;

//下乙個路徑

}printf

("%c"

,n[i-1]

);//列印出來

}printf

("\n");

}void

main()

fflush

(stdin);

//構造哈夫曼樹ht,編碼存放在hc中,w為權值,n為結點個數

hc=huffmancoding

(ht,hc,w,n)

;//輸出哈弗曼編碼

printf

("huffmancode:\n");

printf

("number\t\tweight\t\tcode\n");

for(i=

1;i<=n;i++

)fflush

(stdin);

//解碼過程

printf

("input huffmantranslatecoding:");

gets

(tran)

;huffmantranslatecoding

(ht, n, tran)

;return

;}

哈夫曼編碼 哈夫曼樹

1.定義 哈夫曼編碼主要用於資料壓縮。哈夫曼編碼是一種可變長編碼。該編碼將出現頻率高的字元,使用短編碼 將出現頻率低的字元,使用長編碼。變長編碼的主要問題是,必須實現非字首編碼,即在乙個字符集中,任何乙個字元的編碼都不是另乙個字元編碼的字首。如 0 10就是非字首編碼,而0 01不是非字首編碼。2....

哈夫曼樹 哈夫曼編碼

定義從a結點到b結點所經過的分支序列為從a結點到b結點的路徑 定義從a結點到b結點所進過的分支個數為從a結點到b結點的路徑長度 從二叉樹的根結點到二叉樹中所有結點的路徑長度紙盒為該二叉樹的路徑長度 huffman樹 帶權值路徑長度最小的擴充二叉樹應是權值大的外界點舉例根結點最近的擴充二叉樹,該樹即為...

哈夫曼編碼 哈夫曼樹

哈夫曼樹是乙個利用權值進行優化編碼的乙個比較奇怪的樹,他的實現比較簡單,用途也比較單一。哈夫曼樹的實現,實現要求 通過哈夫曼樹可以保證在編碼過程中不會出現例如 1000和100這樣的編碼規則,否則就會編碼失敗,因為1000和100在某些情況下的編碼會一模一樣。通過哈夫曼樹可以保證權值大的值進行編碼時...