哈夫曼编/译码器

哈夫曼编/译码器 #include <stdio.h>#include <stdlib.h>#include <string.h>int MAXN=0x3f3f3f3f;char* HC[120]; //指针的指针就全局处理,子函数就不用传,方便struct HtNode{    int weight;    int parent;    int Lchild;    int Rchild;};t
相关文章
相关标签/搜索