赫夫曼编码设计的c语言代码 时间:2012-03-23 11:08:30 【文件属性】: 文件名称:赫夫曼编码设计的c语言代码 文件大小:6KB 文件格式:CPP 更新时间:2012-03-23 11:08:30 赫夫曼编码设计 #include #include #include typedef struct HTNODE { char c; int weight; int parent,lchild,rchild; }HTNODE,* Huffmantree; typedef char **HuffmanCode; int s1,s2,n; int *q; char **HC,*r; struct HTNODE *HT; void Select(int n) { 立即下载