堆python_堆的python实现

'''堆的常用用法:

1.构建优先队列

2.支持堆排序

3.快速找出最大值或最小值'''

importmathclassHeap:def __init__(self, A):

self.A=A#维护最大堆的属性

defMaxHeapify(self, i):#考虑到python列表元素索引以0开始, 每个元素的左子元素的索引为2i+1,右子元素的索引为2i+2

left_child = 2 * i + 1right_child= left_child + 1

if left_child < len(self.A) and self.A[left_child] >self.A[i]:

largest=left_childelse:

largest=iif right_child < len(self.A) and self.A[right_child] >self.A[largest]:

largest=right_childif largest !=i:

temp=self.A[i]

self.A[i]=self.A[largest]

self.A[largest]=temp

self.MaxHeapify(largest)#创建最大堆

defBuildMaxHeap(self):for i in range(math.floor((len(self.A) / 2)), -1, -1):

self.MaxHeapify(i)#维护最小堆的属性

defMinHeapify(self, i):#考虑到python列表元素索引以0开始, 每个元素的左子元素的索引为2i+1,右子元素的索引为2i+2

left_child = 2 * i + 1right_child= left_child + 1

if left_child < len(self.A) and self.A[left_child]

least=left_childelse:

least=iif right_child < len(self.A) and self.A[right_child]

least=right_childif least !=i:

temp=self.A[i]

self.A[i]=self.A[least]

self.A[least]=temp

self.MinHeapify(least)#创建最小堆

defBuildMinHeap(self):for i in range(math.floor((len(self.A) / 2)), -1, -1):

self.MinHeapify(i)#最大堆移除最大值

defremove_max(self):

self.BuildMaxHeap()

pop_value=self.A.pop(0)

self.BuildMaxHeap()returnpop_value#插入值

defheap_insert(self, insert_value):

self.A.append(insert_value)

self.BuildMaxHeap()#替换指定索引的值

defheap_replace(self, replace_index, replace_value):

self.A[replace_index]=replace_value

self.BuildMaxHeap()#删除指定索引元素

defremove_at_index(self, remove_index):

self.A.pop(remove_index)

self.BuildMaxHeap()#堆排序算法

defheap_sort(self):

self.BuildMaxHeap()

sorted_array=[]for i in range(len(self.A)-1, -1, -1):

sorted_array.append(self.remove_max())returnsorted_arrayif __name__ == '__main__':#A2 = [6, 4, 9, 4, 3, 7, 1, 6]

#heap_min = Heap(A2)

#创建最小堆

#heap_min.BuildMinHeap()

#print(heap_min.A)

A= [6, 4, 9, 3, 7, 1, 5, 6, 8]

heap_max=Heap(A)#创建最大堆

heap_max.BuildMaxHeap()print(heap_max.A)#移除最大堆最大值

#res = heap_max.remove_max()

#print(res)

#print(heap_max.A)

#堆排序

#sort_res = heap_max.heap_sort()

#print(sort_res)

#插入

#heap_max.heap_insert(12)

#print(heap_max.A)

#替换(已经堆排序再替换)

#heap_max.heap_replace(3, 15)

#print(heap_max.A)

#删除

heap_max.remove_at_index(1)print(heap_max.A)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值