-
Notifications
You must be signed in to change notification settings - Fork 0
/
Max-Heap.py
50 lines (39 loc) · 848 Bytes
/
Max-Heap.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
42
43
44
45
46
47
48
49
50
#!/usr/bin/python3
import math
def parent(i):
return i / 2
def left(i):
return 2 * i
def right(i):
return (2 * i) + 1
def maxHeapify(A, i):
l = left(i)
r = right(i)
if l < len(A) and A[l] > A[i]:
maior = l
else:
maior = i
if r < len(A) and A[r] > A[maior]:
maior = r
if maior != i:
aux = A[i]
A[i] = A[maior]
A[maior] = aux
maxHeapify(A, maior)
def buildMaxHeap(A):
for i in range(math.trunc(len(A)/2), 0, -1):
maxHeapify(A, i)
'# Test'
A = [-1, 4, 1, 3, 2, 16, 9, 10, 14, 8, 7]
buildMaxHeap(A)
# Sem tirar o índice 0 que não é alterado na ordenação
print("Original:")
print(A)
print("")
# Tirando o indice 0
bSize = (len(A) - 1)
B = [0] * bSize
for j in range(0, len(A)-1):
B[j] = A[j+1]
print("Saída esperada:")
print(B)