堆排序

核心思想,curr_index和和curr_index*2+1和curr_index*2+2比大小,看是否需要交换(走那条路遍历),模拟二叉树,使得信息能够重复利用 

def heap_sort(a):
    def adjust_heap(start, end_index, a):
        parent, child = start, start * 2 + 1
        while (child < end_index):
            if child + 1 < end_index and a[child] < a[child + 1]:    child += 1
            if a[parent] > a[child]: break
            a[parent], a[child], parent, child = a[child], a[parent], child, child * 2 + 1

    for index in range(len(a) // 2, -1, -1):
        adjust_heap(index, len(a), a)

    for index in range(len(a) - 1, 0, -1):
        a[index], a[0] = a[0], a[index]
        adjust_heap(0, index, a)

if __name__ == '__main__':
    a = [1, 2, 7, 6, 4, 71, 9, 8, 77, 5, 44, 22, 123, 65]
    heap_sort(a)
    print(a)

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值