摘要: 1 // 赫夫曼树 —— 严蔚敏版教程配套算法代码 2 3 #include<stdio.h> 4 #include<stdlib.h> 5 #include<string.h> 6 7 //哈夫曼树结点结构 8 typedef struct { 9 int weight;//结点权重 10 int 阅读全文
posted @ 2021-10-09 11:00 赶紧学习 阅读(89) 评论(0) 推荐(0) 编辑