摘要: 分治法两两合并,才没有超时 阅读全文
posted @ 2016-04-07 17:44 colors 阅读(248) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # 将前l个节点构成的树的第i个节点调整为大顶堆 # base 1 def heap_adjust(lists,i,l): left,right=2*i-1,2*i max=i-1 if left<l and lists[max]<lists[left]: max... 阅读全文
posted @ 2016-04-07 16:41 colors 阅读(658) 评论(0) 推荐(0) 编辑