摘要: #include #include #define max 100 struct BTreeNode { char data;//字符信息 int weight;//权重 struct BTreeNode* left; struct BTreeNode* right; }; struct Code//存储每个字符的编码 { int len;//编码长度 ... 阅读全文
posted @ 2017-05-30 22:36 编程灬世界 阅读(383) 评论(0) 推荐(0) 编辑