数据结构赫夫曼编码

#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>

typedef struct
{
    unsigned int weight;
    unsigned int parent,lchild,rchild;
}htnode,*huffmantree;

typedef char **huffmancode;

int min1(huffmantree t,int i)
{
 int j,flag;
 unsigned int k=UINT_MAX; //
k为不小于可能的值(unsigned int类型的最大值
)
    for(j = 1; j <= i; j++)
      if(t[j].weight < k && t[j].parent == 0)
          k = t[j].weight,flag = j;
   t[flag].parent=1;
   return flag;
}

// s1
为最小的两个值中序号小的那个

void select(huffmantree t,int i,int *s1,int *s2)
{
  int j;
  *s1=min1(t,i);
  *s2=min1(t,i);
  if(*s1 > *s2)
    {
       j=*s1;
      *s1=*s2;
        *s2=j;
  }
}

void huffmancoding(huffmantree *HT,huffmancode *HC,int *w,int n)
{
  int m,i,s1,s2,start;
    unsigned c,f;
   huffmantree p;
  char *cd;
 
    if(n<=1)
     return;
 m=2*n-1;  
    *HT=(huffmantree)malloc((m+1)*sizeof(htnode));
 for(p=*HT+1,i=1;i<=n;++i,++p,++w)  
    {
       (*p).weight=*w;
     (*p).parent=0;
      (*p).lchild=0;
      (*p).rchild=0;
  }
   for(;i<=m;++i,++p) 
        (*p).parent=0;
  for(i=n+1;i<=m;++i)
    {
       select(*HT,i-1,&s1,&s2);
        (*HT)[s1].parent=(*HT)[s2].parent=i;
        (*HT)[i].lchild=s1;
     (*HT)[i].rchild=s2;
     (*HT)[i].weight=(*HT)[s1].weight+(*HT)[s2].weight;
  }
   *HC=(huffmancode)malloc((n+1)*sizeof(char*));
   cd=(char*)malloc(n*sizeof(char));
  cd[n-1]='\0';
   for(i=1;i<=n;i++)
    { 
        start=n-1;
      for(c=i,f=(*HT)[i].parent; f!=0; c=f,f=(*HT)[f].parent)
         if((*HT)[f].lchild==c)
              cd[--start]='0';
            else
                cd[--start]='1';
        (*HC)[i]=(char*)malloc((n-start)*sizeof(char));

        strcpy((*HC)[i],&cd[start]);
   }
   free(cd);
}

int main()
{
  huffmantree HT;
 huffmancode HC;
 int *w,n,i;

    printf("
请输入权值的个数(>1)\n");
   scanf("%d",&n);
 w=(int*)malloc(n*sizeof(int));
  printf("
请依次输入%d个权值(整型)
\n",n);
  for(i=0;i<=n-1;i++)
      scanf("%d",w+i);
    huffmancoding(&HT,&HC,w,n);
 for(i=1;i<=n;i++)
        puts(HC[i]);
    return 0;
}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值