回 帖 发 新 帖 刷新版面

主题:产生哈夫曼编码的源代码

#include"stdio.h"
#include"stdlib.h"
#include"string.h"

typedef char ElemType;
typedef struct
{
   ElemType elem;
   unsigned int m_weight;
   unsigned int parent,lchild,rchild;
}HTNode,*HuffmanTree;

typedef char** HuffmanCode;
typedef int Status;
typedef struct weight
{
  char elem;
  unsigned int m_weight;
}Weight; // save the information of the symbolizes;

void HuffmanCoding(HuffmanTree *,HuffmanCode *,Weight *,int);
void Select(HuffmanTree,int,int *,int *);
void OutputHuffmanCode(HuffmanTree,HuffmanCode,int);

Status main(void)
{
  HuffmanTree HT;
  HuffmanCode HC;
  Weight *w;
  char c;     // the symbolizes;
  int i,n;      // the number of elements;
  int wei;    // the weight of a element;

  printf("input the tatol number of the Huffman Tree:" );
  scanf("%d",&n);
  w=(Weight *)malloc(n*sizeof(Weight));
  for(i=0;i<n;i++)
  {
    printf("input the element & its weight:");
    scanf("%1s%d",&c,&wei);
    w[i].elem=c;
    w[i].m_weight=wei;
  }

  HuffmanCoding(&HT,&HC,w,n);
  OutputHuffmanCode(HT,HC,n);
  return 1;

}

void HuffmanCoding(HuffmanTree *HT,HuffmanCode *HC,Weight *w,int n)
{
  int i,m,s1,s2,start,c,f;
  char *cd;
  HuffmanTree p;
  if(n<=1)
  return;

  m=2*n-1;
  (*HT)=(HuffmanTree)malloc((m+1)*sizeof(HTNode));
  for(i=1;i<=n;++i)
  {
     (*HT)[i].elem=w[i-1].elem;
     (*HT)[i].m_weight=w[i-1].m_weight;
     (*HT)[i].parent=(*HT)[i].lchild=(*HT)[i].rchild=0;
  }

  for(;i<=m;++i)
  {
    (*HT)[i].elem='0';
    (*HT)[i].m_weight=(*HT)[i].parent=(*HT)[i].lchild=(*HT)[i].rchild=0;
  }

  for(i=n+1;i<=m;++i)
  {
    Select(*HT,i-1,&s1,&s2);
    (*HT)[s1].parent=i;(*HT)[s2].parent=i;
    (*HT)[i].lchild=s1;(*HT)[i].rchild=s2;
    (*HT)[i].m_weight=(*HT)[s1].m_weight+(*HT)[s2].m_weight;
  }

  (*HC)=(HuffmanCode)malloc(n*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]);
  }
}

void Select(HuffmanTree HT,int n,int *s1,int *s2)
{
  int i;
  (*s1)=(*s2)=0;
  for(i=1;i<=n;i++)
  {
    if(HT[i].m_weight<HT[(*s2)].m_weight&&HT[i].parent==0&&(*s2)!=0)
{
      if(HT[i].m_weight<HT[(*s1)].m_weight)
  {
  (*s2)=(*s1);
  (*s1)=i;
      }
      else (*s2)=i;

    }

    if(((*s1)==0||(*s2)==0)&&HT[i].parent==0)
{
      if((*s1)==0) (*s1)=i;
      else if((*s2)==0)
  {
  if(HT[i].m_weight<HT[(*s1)].m_weight)
  {
  (*s2)=(*s1);
  (*s1)=i;
  }
  else (*s2)=i;
      } // end of else if
    } // end of if
  } // end of for

  if((*s1)>(*s2))
  {
    i=(*s1);
(*s1)=(*s2);
(*s2)=i;
  }
  return;
}

void OutputHuffmanCode(HuffmanTree HT,HuffmanCode HC,int n)
{
  int i;
  printf("\nnumber---element---weight---huffman code\n");
  for(i=1;i<=n;i++)
    printf("  %d        %c         %d        %s\n",i,HT[i].elem,HT[i].m_weight,HC[i]);

回复列表 (共24个回复)

11 楼

麻烦问一下白云黄鹤是网址还是什么呀,多谢了,很着急用代码.谢谢了.

12 楼


想求各位一件事,谁能做出来这道题呀,我考试急用.很急.多谢了.
这是<计算机算法设计与分析>课的一道题.
题目是:
若旅行售货员问题中,图G=(C,E)(无向图)的各项点均为平面上的点,且费用函数c(u,v)定义为点u和v之间的欧氏距离,证明G的一个最优旅行售货员回路不会自相交.

如果有会做的请发到这页就行了,因为我的邮箱密码忘了.
[em12]

13 楼

各位朋友帮帮忙呀
“基于vhdl的哈夫曼编码的核设计”
这一课题,谁能提供点资料呀,不胜感激!!!
有这方面的资料请发在以下信箱:
wildperson18@163.net

14 楼

谢谢了..............

15 楼

为什么不自己去搜搜啊

16 楼

谁能 帮我写一个Huffman的译码程序,如可以,不胜感激,在此先谢过!

17 楼

LZ78

18 楼

"白云黄鹤"是华中科技大学的BBS,你可先进www.hust.edu.cn

19 楼

哈夫曼编码与译码
设计要求:针对字符集A及其各字符的频率值(可统计获得)给出其中给字符哈夫曼编码,并针对一段文本(定义在A上)进行编码和译码,实现一个哈夫曼编码/译码系统。

这才是真正意义上的程序呢!

20 楼

这个Huffman树没有考虑到,小的为左子树,大的做为右子树。
void HuffmanCoding(HuffmanTree *HT,HuffmanCode *HC,Weight *w,int n)
中的第三个for循环改进如下:
for(i=n+1;i<=m;++i)
  {
    Select(*HT,i-1,&s1,&s2);  
    (*HT)[s1].parent=i;(*HT)[s2].parent=i;
    (*HT)[i].m_weight=(*HT)[s1].m_weight+(*HT)[s2].m_weight;
    
    {if((*HT)[s1].m_weight<(*HT)[s2].m_weight)
    {(*HT)[i].lchild=s1;(*HT)[i].rchild=s2; }   //小的为左子树,大的为右子数
    else (*HT)[i].lchild=s2;
    (*HT)[i].rchild=s1;}

  
  }

我来回复

您尚未登录,请登录后再回复。点此登录或注册