[硕.Love Python] HeapSort(堆排序)

Posted

tags:

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

def adjust(a, root, n):
    k = a[root-1]
    c = root * 2

    while c <= n:
        if c + 1 <= n and a[c] > a[c-1]:
            c += 1

        if a[c-1] <= k:
            break

        a[c/2-1] = a[c-1]
        c *= 2

    a[c/2-1] = k

def heapSort(a):
    n = len(a)

    for i in xrange(n / 2, 0, -1):
        adjust(a, i, n)

    for i in xrange(n - 1, 0, -1):
        a[0], a[i] = a[i], a[0]
        adjust(a, 1, i)

if __name__ == ‘__main__‘:
    from random import shuffle

    data = range(100)
    shuffle(data)

    print data
    heapSort(data)
    print data


刘硕老师Python精品课程:

Python高级编程技巧实战》:

http://coding.imooc.com/class/62.html

 

Python算法实战视频课程》:

http://study.163.com/course/courseMain.htm?courseId=1003617013

 

Python科学计算—NumPy实战课程》:

http://edu.51cto.com/course/course_id-5046.html

 

熊猫TV直播间:

http://www.panda.tv/671023



以上是关于[硕.Love Python] HeapSort(堆排序)的主要内容,如果未能解决你的问题,请参考以下文章

[硕.Love Python] RadixSort(基数排序)

[硕.Love Python] QuickSort(快速排序)

[硕.Love Python] BinomialHeap(B堆 & 二项堆)

[硕.Love Python] FibonacciHeap(F堆 & 斐波那契堆)

HeapSort

双非本硕“统计学”连读,带你讲述一下我的 “Python编程学习” 之路!