zoukankan      html  css  js  c++  java
  • 最优二叉树

    树的路径长度

    树的路径长度是从树根到树中每一结点的路径长度之和。在结点数目相同的二叉树中,完全二叉树的路径长度最短。
     

    树的带权路径长度(weighted path length of tree,wpl)

    结点的权值:在一些应用中,赋予树中结点的一个有某种意义的实数、
    结点的带权路径长度:结点到树根之间的路径长度与该结点上权的乘积
    树的带权路径长度(wpl):定义为树中所有结点的带权路径长度之和
     

    最优二叉树

    在权为w1,w2,...,wn的n个叶子结点所构成的所有二叉树中,带权路径长度最小(即代价最小)的二叉树成为最优二叉树。
    注意:
    • 叶子上的权值均相同时,完全二叉树一定是最优二叉树,否则完全二叉树不一定是最优二叉树。
    • 最优二叉树中,权值越大的叶子结点离根越近
    • 最优二叉树的形态不唯一,wpl最小

    构造最优二叉树

     

    哈夫曼算法

    1. 根据给定的n个权值w1,w2,...,wn构成n棵二叉树的森林F={T1,T2,..,Tn},其中每棵二叉树Ti中只有一个权值为wi的根节点,其左右子树均为空。
    2. 在森林F中选出两棵根结点权值最小的树(当这种的树不止两棵时,可以从中任选两棵),将这两棵树和并称一棵新树,为了保证新树仍是二叉树,需要增加一个新结点作为新树的根,并将所选的两棵树根分别作为新树的左右孩子,将这两个孩子的权值之和作为新树根的权值
    3. 对新的森林F重复2,直到森林F只剩一棵树为止。
    注意
    • 初始森林中的n棵二叉树,每棵树都有一个孤立的结点,它们既是根,又是叶子
    • n个叶子结点的哈夫曼树需要经过n-1次合并,产生n-1个新结点。最终求得的哈夫曼树共有2n-1个结点
    • 哈夫曼树是严格的二叉树,没有度数为1的分支结点

    哈夫曼树存储结构

    1. #include <stdio.h>  
    2. #include <stdlib.h>  
    3. #include <string.h>  
    4. #define MAX_SIZE 100  
    5. #define MIN_NUM 1000000  
    6.   
    7. struct hfmcode  
    8. {  
    9.     int weight;  
    10.     int lchild;  
    11.     int rchild;  
    12.     int parent;  
    13. };  
    注意:
    1. 因此数组下界为0,因此用-1表示空指针。树中某结点的lchild,rchild,parent不等于-1时,它们分别是该结点的左、右孩子和双亲结点在向量中的下标。
    2. parent域的作用:其一是查找双亲结点更为简单。其二是可通过判定parent值是否为-1来区分根和非根结点。

    实现代码

    (1)初始化,将T[0..m-1]中的2n-1个结点里的三个指针均置空(==-1),权值置为0.
    1. void initHuffmantree(struct hfmcode *tree, int len)  
    2. {  
    3.     int i;  
    4.   
    5.     for(i = 0; i < len; i ++)  
    6.     {  
    7.         tree[i].weight = 0;  
    8.         tree[i].lchild = -1;  
    9.         tree[i].rchild = -1;  
    10.         tree[i].parent = -1;  
    11.     }  
    12. }  

    (2)输入,读入n个叶子的权值存于向量的前n个分量(即T[0..n-1])中。
    1. int main()  
    2. {  
    3.     int n, m, i;  
    4.     struct hfmcode hfmtree[MAX_SIZE];  
    5.   
    6.     while(scanf("%d", &n) != EOF)  
    7.     {  
    8.         /*哈夫曼树总共结点数*/  
    9.         m = 2 * n - 1;  
    10.   
    11.         /*初始化哈夫曼树*/  
    12.         initHuffmantree(hfmtree, m);  
    13.   
    14.         /*权限赋值*/  
    15.         for(i = 0; i < n; i ++)  
    16.         {  
    17.             scanf("%d", &hfmtree[i].weight);  
    18.         }  
    19.   
    20.         /*构造哈夫曼树*/  
    21.         createHuffmantree(hfmtree, n, m);  
    22.   
    23.         printf("%d ", hfmtree[m - 1].weight);  
    24.     }  
    25.   
    26.     return 0;  
    27. }  
     
    (3)合并,对森林中的树共进行n-1次合并,所产生的新结点依次放入向量T的第i个分量中(n<=i<=m-1).每次合并分两步:
    1. 在当前森林T[0..i-1]的所有结点中,选取权最小和次小的两个根节点T[p1]和T[p2]作为合并对象,这里0<=p1,p2<=i-1
    2. 将根为T[p1]和T[p2]的两棵树作为左右子树合并为一棵新的树,新的树根是新节点T[i].具体操作是:将T[p1]和T[p2]的parent置为i,将T[i]的lchild和rchild分别置为p1和p2.新结点T[i]的权值置为T[p1]和T[p2]的权值之和。
    3. 合并后,T[p1]和T[p2]在当前森林中已不再是根,因为它们的双亲指针均已指向了T[i],所以下次合并时不会被选中为合并对象。
    1. void createHuffmantree(struct hfmcode *tree, int n, int m)  
    2. {  
    3.     int m1, m2, i, loc1, loc2, k;  
    4.   
    5.     for(i = n; i < m; i ++)  
    6.     {  
    7.         /*初始化最小值、次小值*/  
    8.         m1 = m2 = MIN_NUM;  
    9.         loc1 = loc2 = -1;  
    10.         /*在尚未构造二叉树的节点中查找权值最小的两棵树*/  
    11.         for(k = 0; k < i; k ++)  
    12.         {  
    13.             if(tree[k].parent == -1)  
    14.             {  
    15.                 if(tree[k].weight < m1)  
    16.                 {  
    17.                     m2 = m1;  
    18.                     loc2 = loc1;  
    19.                     m1 = tree[k].weight;  
    20.                     loc1 = k;  
    21.                 }else if(tree[k].weight < m2)  
    22.                 {  
    23.                     m2 = tree[k].weight;  
    24.                     loc2 = k;  
    25.                 }  
    26.             }  
    27.         }  
    28.   
    29.         /*修改2个小权重节点的双亲*/  
    30.         tree[loc1].parent = i;  
    31.         tree[loc2].parent = i;  
    32.   
    33.         /*修改parent的权重*/  
    34.         tree[i].weight = tree[loc1].weight + tree[loc2].weight;  
    35.   
    36.         /*修改parent的孩子*/  
    37.         tree[i].lchild = loc1;  
    38.         tree[i].rchild = loc2;  
    39.     }  
    40. }  
     

    哈夫曼编码

     

    编码和解码

    数据压缩的过程成为编码。即将文件中的每个字符均转换为一个唯一的二进制位串
    数据解压过程成为解码。即将二进制位串转换位对应的字符
     

    前缀码&&最优前缀码

    对字符集进行编码时,要求字符集中任一字符的编码都不是其它字符的编码的前缀,这种编码成为前缀编码
     
    平均码长或文件总长最小的前缀编码成为最优前缀编码,最优前缀编码对文件的压缩效果亦最佳。
     

    哈夫曼编码为最优前缀编码

    1. 每个叶子字符ci的码长恰为从根到该叶子的路径长度li,平均码长(或文件总长)又是二叉树的带权路径长度WPL.而哈夫曼树是WPL最小的二叉树,因此编码的平均码长亦最小
    2. 树中没有一片叶子是另一个叶子的祖先,每片叶子对应的编码就不可能是其它叶子编码的前缀。

    哈夫曼编码算法

    算法思想

    给定字符集的哈夫曼树生成后,求哈弗曼编码的具体实现过程是:依次以叶子T[i](0 <= i< n)为出发点,向上回溯到根为止,上溯是走左分支则生成代码0,走右分支则生成代码1.
     
    注意:
    • 由于的编码与要求的编码反序

    算法代码

    1. /*哈夫曼编码*/  
    2. struct hfmd  
    3. {  
    4.     char code[MAX_SIZE];  
    5. };  

    1. void createHuffmancode(struct hfmcode *htree, struct hfmd *hcode, int n)  
    2. {  
    3.     /*c和p分别指示T中的孩子和双亲的位置*/  
    4.     int p, i, c;  
    5.     /*临时存放编码*/  
    6.     char cd[n];  
    7.     /*指示编码在cd中起始位置*/  
    8.     int start;  
    9.       
    10.     /*依次求叶子T[i]的编码*/  
    11.     for(i = 0; i < n; i ++)  
    12.     {  
    13.         c = i;  
    14.         start = n;  
    15.         memset(cd, 0, sizeof(cd));  
    16.         p = htree[c].parent;  
    17.         while(p != -1)  
    18.         {  
    19.             cd[-- start] = (htree[p].lchild == c)? '0' : '1';  
    20.             c = p;  
    21.             p = htree[p].parent;  
    22.         }  
    23.         strcpy(hcode[i].code, cd + start);        
    24.     }  
    25. }  
     

    链表实现哈夫曼树

    注意

    用链表实现哈夫曼树的同学最好注意一下指针变量和节点变量的区别!
     

    哈夫曼树存储结构定义

    1. //哈夫曼结点类型定义  
    2. struct huffmancode  
    3. {  
    4.     int power;  
    5.     struct huffmancode *lchild;  
    6.     struct huffmancode *rchild;  
    7.     struct huffmancode *next;  
    8. };  

    构建哈夫曼树

    这里有个技巧,构建链表时保证链表有序,这样每次取最小的两个节点只要从头节点head取pl=head->next, pr=head->next->next就可以了,省去排序的时间!
     
    1. /** 
    2.  * Description:构建哈夫曼树 
    3.  */  
    4. struct huffmancode* createHuffmanTree(int n, int *weight)  
    5. {  
    6.     int i;  
    7.     struct huffmancode *head, *pl, *pr, *proot;  
    8.     head = (struct huffmancode *)malloc(sizeof(struct huffmancode));  
    9.     head->next = NULL;  
    10.   
    11.     //初始化森林  
    12.     for(i = 0; i < n; i ++)  
    13.     {     
    14.         struct huffmancode *pnode = (struct huffmancode *)malloc(sizeof(struct huffmancode));  
    15.         pnode->power = *(weight + i);  
    16.         pnode->lchild = pnode->rchild = pnode->next = NULL;  
    17.         addNode(head, pnode);  
    18.     }  
    19.   
    20.     //构造哈夫曼树  
    21.     while(head->next)  
    22.     {  
    23.         //只有一个节点的情况  
    24.         if(!head->next->next)  
    25.         {  
    26.             break;  
    27.         }  
    28.   
    29.         //从单链表中取出节点最小的两个点  
    30.         pl = head->next;  
    31.         pr = pl->next;  
    32.   
    33.         //删除pl、pr结点,加入到哈夫曼树中  
    34.         head->next = pr->next;  
    35.         proot = (struct huffmancode *)malloc(sizeof(struct huffmancode));  
    36.         proot->power = pl->power + pr->power;  
    37.         proot->lchild = pl;  
    38.         proot->rchild = pr;  
    39.         addNode(head, proot);  
    40.     }         
    41.   
    42.     return head->next;  
    43. }  
    44.   
    45. /** 
    46.  * Description:添加节点 
    47.  */  
    48. void addNode(struct huffmancode *head, struct huffmancode *pnode)  
    49. {  
    50.     struct huffmancode *t = head;  
    51.   
    52.     //找到第一个权值大于给定结点的结点,t指定该结点的前一结点  
    53.     while(t->next && t->next->power < pnode->power)  
    54.     {  
    55.         t = t->next;  
    56.     }  
    57.     pnode->next = t->next;  
    58.     t->next = pnode;  
    59. }  

    获取WPL

    1. /** 
    2.  * Description:获取哈夫曼树的带权路径长度(初始level为0) 
    3.  */  
    4. int getWPL(struct huffmancode *root, int level)  
    5. {  
    6.     if(!root)  
    7.     {  
    8.         return 0;  
    9.     }  
    10.     if(!root->lchild && !root->rchild)  
    11.     {  
    12.         return root->power * level;  
    13.     }  
    14.       
    15.     return getWPL(root->lchild, level + 1) + getWPL(root->rchild, level + 1);  
    16. }  


    清空哈夫曼树

    1. /** 
    2.  * Description:清理哈夫曼树 
    3.  */  
    4. void freeHuffmantree(struct huffmancode *root)  
    5. {  
    6.     if(!root)  
    7.     {  
    8.         return;  
    9.     }  
    10.     freeHuffmantree(root->lchild);  
    11.     freeHuffmantree(root->rchild);  
    12.     free(root);  
    13. }  
  • 相关阅读:
    MFC加载皮肤 转自:http://www.cctry.com/thread-4032-1-1.html
    内存不能为read修复方法:(转自:网上(忘记了))
    Kalendar server Beijing Tiandiyuandian Technology Limited 果然是木马
    牛人面经
    安装graphlab伤透了心,终于搞定了
    哨兵模式下,master选举关键点
    redis哨兵模式,数据尽量少的丢失
    使用@import导入实现了ImportBeanDefinitionRegistrar接口的类,不能被注册为bean
    redis使用rdb恢复数据
    spring boot动态数据源方案
  • 原文地址:https://www.cnblogs.com/is-zj/p/3740219.html
Copyright © 2011-2022 走看看