摘要: /* * Author: BigBallon * Note: Max_priority_queue * Date: 2013.11.21 */一篇好文章:http://blog.csdn.net/xihuanqiqi/article/details/7098909#includeusing namespace std;void My_swap(int& x, int& y){ int t = x; x = y; y = t;}void Max_Heapify(int* A, int i, int len){ int lt = i A[i]) l... 阅读全文
posted @ 2013-11-22 00:00 Geekers 阅读(328) 评论(0) 推荐(0) 编辑