python实现堆排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python实现堆排序相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# -*- coding: utf-8 -*-

def heap_sort(arr):
    l = len(arr)
    for i in xrange(l/2, -1, -1):
        form_heap(arr, i, l-1)
    for i in xrange(l-1, 0, -1):
        arr[i],arr[0] = arr[0],arr[i]
        form_heap(arr, 0, i-1)
    return

def form_heap(arr, start, end):
    while(start < end):
        tmp = start * 2
        if tmp > end:
            break
        if tmp +1 <= end and  arr[tmp + 1] > arr[tmp]:
            tmp = tmp + 1
        if arr[tmp] > arr[start]:
            arr[tmp],arr[start] = arr[start], arr[tmp]
        start = tmp

heap_sort(arr)
#form_heap(arr, 3,len(arr) -1)
print arr

  

以上是关于python实现堆排序的主要内容,如果未能解决你的问题,请参考以下文章

Java排序算法 - 堆排序的代码

堆排序算法以及python实现

堆排序(Python实现)

堆排序python实现

堆排python实现堆排

堆排序的python实现