데이터 구조 - 트 리 와 이 진 트 리 의 기본 연산 실현

실험 문제
프로그램 exp7 - 6. cpp 를 설계 하여 하프 만 트 리 를 구성 하고 출력 에 대응 하 는 하프 만 인 코딩 과 평균 검색 길 이 를 설정 합 니 다.표 7.8 에서 보 여 준 데이터 로 검증 한다.
실험 목적
하프 만 나무의 구조 과정 과 하프 만 인 코딩 의 생 성 방법 파악 하기;이 진 트 리 라 는 데이터 구 조 를 활용 하여 종합 적 인 응용 문 제 를 해결 하 다.
원본 코드:
#include <iostream>
#include <cstring>
#define N 50 
#define M 2*N-1 
using namespace std;
struct HTNode
{
    char data[5];   //   
    int weight;     
    int parent;     
    int lchild;     
    int rchild;     
};
struct HCode
{
    char cd[N];     //      
    int start;
};

void CreateHT(HTNode ht[],int n)
{
    int i,k,lnode,rnode;
    int min1,min2;
    for (i=0;i<2*n-1;i++)           
        ht[i].parent=ht[i].lchild=ht[i].rchild=-1;
    for (i=n;i<2*n-1;i++)           
    {
        min1=min2=32767;        
        lnode=rnode=-1;
        for (k=0;k<=i-1;k++)
            if (ht[k].parent==-1)   
            {
                if (ht[k].weight<min1)
                {
                    min2=min1;rnode=lnode;
                    min1=ht[k].weight;lnode=k;
                }
                else if (ht[k].weight<min2)
                {
                    min2=ht[k].weight;rnode=k;
                }
            }
        ht[lnode].parent=i;ht[rnode].parent=i;
        ht[i].weight=ht[lnode].weight+ht[rnode].weight;
        ht[i].lchild=lnode;ht[i].rchild=rnode;
    }
}
void CreateHCode(HTNode ht[],HCode hcd[],int n)
{
    int i,f,c;
    HCode hc;
    for (i=0;i<n;i++)   
    {
        hc.start=n;c=i;
        f=ht[i].parent;
        while (f!=-1)    
        {
            if (ht[f].lchild==c)    
                hc.cd[hc.start--]='0';
            else                
                hc.cd[hc.start--]='1';
            c=f;f=ht[f].parent;
        }
        hc.start++;     
        hcd[i]=hc;
    }
}
void DispHCode(HTNode ht[],HCode hcd[],int n)
{
    int i,k;
    int sum=0,m=0,j;
    cout<<"       :"<<endl;  
    for (i=0;i<n;i++)
    {
        j=0;
        cout<<ht[i].data<<":";
        for (k=hcd[i].start;k<=n;k++)
        {
            cout<<hcd[i].cd[k];
            j++;
        }
        m+=ht[i].weight;
        sum+=ht[i].weight*j;
        cout<<endl;
    }
    cout<<"    ="<<1.0*sum/m<<endl;;
}
int main()
{
    int n=15,i;
    char *str[]={"The","of","a","to","and","in","that","he","is","at","on","for","His","are","be"};
    int fnum[]={1192,677,541,518,462,450,242,195,190,181,174,157,138,124,123};
    HTNode ht[M];
    HCode hcd[N];
    for (i=0;i<n;i++)
    {
        strcpy(ht[i].data,str[i]);
        ht[i].weight=fnum[i];
    }
    CreateHT(ht,n);
    CreateHCode(ht,hcd,n);
    DispHCode(ht,hcd,n);
}

실행 결과:

좋은 웹페이지 즐겨찾기