首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
[原创] Huffman编码生成程序
#include <stdio.h>#include <stdlib.h>#define MaxSize 50typedef struct{ char c; //代码; int w; //代码权值; char code[MaxSize]; //代码的Huffman编码; }HuffCode[MaxSize];typedef struct{ int Weight; //权值; int LChild,RChild,Parent; }HTNode,HuffTree[MaxSize];//==...
D.S.
| 2006-12-05 20:59 |
阅读 2755 次
|
评论 0 条
haroldi的博客
haroldi
浏览16305次
文章分类
默认分类(0)
D.S.(5)
修身养性(0)
乐透(0)
WINAPI(1)
文章归档
2007年09月(1)
2007年04月(2)
2006年12月(1)
2006年10月(1)
2006年09月(1)
最新评论