摘要: 【贪心】构造Huffman树的总费用/合并果子 用数组足够 #include <stdio.h> #include <stdlib.h> int compare(const void*a,const void*b) { return(*(int*)a-*(int*)b); } int main() 阅读全文
posted @ 2019-12-09 21:41 今天你AC了吗 阅读(156) 评论(0) 推荐(0) 编辑