HuffmanTree

#include "stdafx.h" #include "stdio.h" #include "stdlib.h" #include "string.h" typedef int ELEMTYPE; //哈弗曼树节点结构体 typedef struct HuffmanTree { ELEMTYPE weight; ELEMTYPE id;//区分权值相同的节点 struct Huffm
相关文章
相关标签/搜索