-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeap Sort.py
41 lines (34 loc) · 823 Bytes
/
Heap Sort.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
def PARENT(i):
return (i+1)/2-1
def LEFT(i):
return (i+1)*2-1
def RIGHT(i):
return (i+1)*2
def maxHeapify(A,i,heap_size):
left = LEFT(i)
right = RIGHT(i)
largest = i
if left<heap_size and A[left]>A[i]:
largest = left
if right<heap_size and A[right]>A[largest]:
largest = right
if(largest !=i):
t = A[largest]
A[largest] = A[i]
A[i] = t
maxHeapify(A,largest,heap_size)
def buildMaxHeap(A,heap_size):
for i in range(int(heap_size/2)-1,-1,-1):
maxHeapify(A,i,heap_size)
def heapSort(A):
heap_size = len(A)
buildMaxHeap(A,heap_size)
for i in range(heap_size-1,0,-1):
t = A[i]
A[i] = A[0]
A[0] = t
heap_size -=1
maxHeapify(A,0,heap_size)
a = [1,2,34,3]
heapSort(a)
print(a)