헤 프 만 트 리 인 코딩
내 코드 의 클 라 우 드 공유:http://yunpan.cn/csinkSxjb84FQ 추출 코드 2b2a
#include<iostream>
#include<string>
using namespace std;
struct HTNode
{
char c; //
int weight; // ,
int lchild,rchild,parent;//
};//
#define MAXSIZE 1000//
class CHTree
{
public:
CHTree(){ht=NULL;}
void creat();//
void huffmancode();
int select(int i);// ht[1] ht[i] parent 0 weight ,
void Display();
private:
HTNode* ht;//
int m;
int n;//
int s1;
int s2;
string a;//
string str[MAXSIZE];//
};//
void CHTree::creat()
{
int zfcxcs;//
cout<<" :"<<endl;
cin>>a;
int l=a.length();//
n=0;
ht=new HTNode[MAXSIZE];// MAXSIZE
// ,
bool yitongji=false;
for(int j=0;j<l;j++)
{
zfcxcs=1;
if(j>0)//
{
for(int i=0;i<j;i++)
if(a[i]==a[j])
{
yitongji=true;
break;
}
}
if(yitongji)// , ,
{
yitongji=false;
continue;
}
for(int x=j+1;x<l;x++)
{
if(a[j]==a[x])
{
zfcxcs++;
}
}
ht[n+1].c=a[j];
ht[n+1].weight=zfcxcs;
n++;
yitongji=false;
}
}
int CHTree::select(int i)
{
int j=1;
int k=1;
int s;
while(ht[j].parent!=0)// parent 0
{
j++;
s=j;
}
k=j+1;
while(k<=i)
{
while(ht[k].parent!=0)
k++;
if(k>i)
return s;
if(ht[j].weight>ht[k].weight)
{
ht[j].parent=0;// ht[j] , ht[j].parent 0
j=k;// “ht[j]”
s=j;
ht[j].parent=-1;// ht[j] , ht[j] parent -1,
}
else
{
s=j;
ht[j].parent=-1;
}
k++;
}
return s;
}
void CHTree::huffmancode()
{
if(n<=1)
return;
//
int i;
m=2*n-1;//
for(i=1;i<=n;i++)//
{
ht[i].parent=0;
ht[i].lchild=0;
ht[i].rchild=0;
}
for(;i<=m;i++)//
{
ht[i].weight=0;
ht[i].parent=0;
ht[i].lchild=0;
ht[i].rchild=0;
}
//----
for(i=n+1;i<=m;i++)
{
s1=select(i-1);
s2=select(i-1);
ht[s1].parent=i;ht[s2].parent=i;
ht[i].lchild=s1;ht[i].rchild=s2;
ht[i].weight=ht[s1].weight+ht[s2].weight;
}
//
int c,f;
int j;
for(j=1;j<=n;j++)
{
for(c=j,f=ht[j].parent;f!=0;c=f,f=ht[f].parent)//
if(ht[f].lchild==c)
{
str[j].insert(0,"0",0,1);
}
// str[i] 0 “0”
else
{
str[j].insert(0,"1",0,1);
}
// str[i] 0 “1”
}
}
void CHTree::Display()
{
cout<<" "<<'\t'<<" "<<'\t'<<" "<<endl;
for(int i=1;i<=n;i++)
{
cout<<ht[i].c<<'\t'<<ht[i].weight<<'\t'<<str[i]<<endl;
}
cout<<" !"<<endl;
delete ht;
}
int main()
{
CHTree h;
cout<<'
'<<"---------------------- -----------------------"<<endl;
h.creat();
h.huffmancode();
h.Display();
system("pause");
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정렬이 원본 비교를 지원하지 않는 대상너는 같은 유형의 대상을 정렬하고 싶지만, 그들은 원생의 비교 조작을 지원하지 않는다. 내장된sorted () 함수에는 키워드 매개 변수 키가 있습니다.callable 대상을 전송할 수 있습니다. 이callable ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.