欢迎来到天天文库
浏览记录
ID:24733332
大小:56.00 KB
页数:4页
时间:2018-11-16
《动态哈夫曼编码的改进 .》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、动态哈夫曼编码的改进. 《计算机世界月刊》1994年7月号所登载的《动态哈夫曼编码的数据压缩方法》一文给出了一种实时性较强的数据压缩方法,该方法的最大特点是不需预先对原始数据进行一遍扫描以建立哈夫曼树,而改为以动态变化的哈夫曼树对数据编码。该文所附的动态哈夫曼编码数据压缩与解压源程序中的update函数是动态修改哈夫曼树的关键部分,该函数对动态哈夫曼树的一种可能情况无法正确修改,针对这一点,本文附上对该函数的一个修正定义,以使该压缩与解压程序更加完善。以下就举例说明原update函数无法正确修改的一种哈夫曼树。例如若要压缩“tthhis”字符
2、串,则在压缩完“tth”之后的动态哈夫曼树为图所示(设根结点序号为1000):04a07700.gif;图压缩完“tth”之后的动态哈夫曼树此时若再将字符h进行压缩编码,则在输出h的编码“01”后需调整哈夫曼树,以997号叶结点为当前结点,则与当前结点具有同样重量的且序号最大的结点为998号结点,而该结点是997号结点的父结点,对二者按原文所提供的update函数进行交换,则将导致998号结点变成叶结点,996号结点变成997号结点的左孩子,997号结点则既为自己的父结点又是自己的右孩子,这样在对后继字符i进行压缩编码时,首先就无法输出996
3、号空结点的编码了,此时压缩程序陷入死循环。显然这时可以简单地将998和997号结点的重量加1,然后以998号结点的父结点为当前结点进行调整,根据这种思想对原文提供的update函数进行修正所得新的update函数附后。voidupdate(structnode*temp){structnode*tempa,*tempc,*pointer;structleafnode*p,*q,*b;unsignedcharletter;p!=root){if(temp->p->p->front!=null){tempa=temp;p->
4、;front!=null)temp=temp->front;if(temp==tempa->parent){tempa->pa->after=tempa->front=null;temp->after=null;insertpa);}else{pointer=temp->leftchild;if(pointer!=null)pointer->parent=tempa;temp->leftchild=tempa->leftchild;if(temp->leftchild!=nul
5、l)temp->leftchild->parent=temp;tempa->leftchild=pointer;pointer=temp->rightchild;if(pointer!=null)pointer->parent=tempa;temp->rightchild=tempa->rightchild;if(temp->rightchild!=null)temp->rightchild->parent=temp;tempa->rightchild=pointer;lett
6、er=temp->letter;temp->letter=tempa->letter;tempa->letter=letter;if((tempa->leftchild==null)(tempa->rightchild==null){b=leaf;p){b->charnode=tempa;break;}elseb=b->next;}}if((temp->leftchild==null)(temp->rightchild++null)){b=leaf;pa){b->charnod
7、e=temp;break;}elseb=b->next;}}}}p->next->charnode=temp->after;if(temp->after==null){q=p->next;p->next=q->next;free(q);}elsetemp->after->front=null;}temp->p->after=temp->front=null;insertp);temp=temp->parent;}}:刘飞孙扬声A/p`r.V$cHjj,5fJ3
8、P%z[州学习计算机计算机通信.gzU521.]A/p`r.V$cHjj,5fJ3P%z
此文档下载收益归作者所有