摘要:
#include #define MAX_NODE 1024#define MAX_WEIGHT 4096typedef struct HaffmanTreeNode { char ch, code[15]; int weight; int parent, lchild, rchild;} HTNode, *HaTree;typedef struct { HTNode a... 阅读全文
posted @ 2005-01-17 23:40
I love I think
阅读(3238)
评论(3)
推荐(0)