摘要:
题目题解:http://blog.csdn.net/xu12110501127/article/details/9199335 有关博客:http://www.360doc.com/content/10/1118/16/963301_70454649.shtml 优先队列不错的博客。 priorit 阅读全文
摘要:
题目:http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2127&cid=1184哈夫曼树。 1 #include 2 #include 3 #include 4 int a[11000]; 5 6 int cmp(const void *a,const void *b) 7 { 8 return *(int *)a-*(int *)b; 9 }10 int main()11 {12 int n,i,sum=0,t,j;13 scanf("%d",&n);14 for(i=0; i<n; i++)15 阅读全文