forked from TheAlgorithms/Python
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathheap.py
135 lines (116 loc) · 3.4 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/python3
class Heap:
"""
>>> unsorted = [103, 9, 1, 7, 11, 15, 25, 201, 209, 107, 5]
>>> h = Heap()
>>> h.build_heap(unsorted)
>>> h.display()
[209, 201, 25, 103, 107, 15, 1, 9, 7, 11, 5]
>>>
>>> h.get_max()
209
>>> h.display()
[201, 107, 25, 103, 11, 15, 1, 9, 7, 5]
>>>
>>> h.insert(100)
>>> h.display()
[201, 107, 25, 103, 100, 15, 1, 9, 7, 5, 11]
>>>
>>> h.heap_sort()
>>> h.display()
[1, 5, 7, 9, 11, 15, 25, 100, 103, 107, 201]
>>>
"""
def __init__(self):
self.h = []
self.curr_size = 0
def get_left_child_index(self, i):
left_child_index = 2 * i + 1
if left_child_index < self.curr_size:
return left_child_index
return None
def get_right_child(self, i):
right_child_index = 2 * i + 2
if right_child_index < self.curr_size:
return right_child_index
return None
def max_heapify(self, index):
if index < self.curr_size:
largest = index
lc = self.get_left_child_index(index)
rc = self.get_right_child(index)
if lc is not None and self.h[lc] > self.h[largest]:
largest = lc
if rc is not None and self.h[rc] > self.h[largest]:
largest = rc
if largest != index:
self.h[largest], self.h[index] = self.h[index], self.h[largest]
self.max_heapify(largest)
def build_heap(self, collection):
self.curr_size = len(collection)
self.h = list(collection)
if self.curr_size <= 1:
return
for i in range(self.curr_size // 2 - 1, -1, -1):
self.max_heapify(i)
def get_max(self):
if self.curr_size >= 2:
me = self.h[0]
self.h[0] = self.h.pop(-1)
self.curr_size -= 1
self.max_heapify(0)
return me
elif self.curr_size == 1:
self.curr_size -= 1
return self.h.pop(-1)
return None
def heap_sort(self):
size = self.curr_size
for j in range(size - 1, 0, -1):
self.h[0], self.h[j] = self.h[j], self.h[0]
self.curr_size -= 1
self.max_heapify(0)
self.curr_size = size
def insert(self, data):
self.h.append(data)
curr = (self.curr_size - 1) // 2
self.curr_size += 1
while curr >= 0:
self.max_heapify(curr)
curr = (curr - 1) // 2
def display(self):
print(self.h)
def main():
for unsorted in [
[],
[0],
[2],
[3, 5],
[5, 3],
[5, 5],
[0, 0, 0, 0],
[1, 1, 1, 1],
[2, 2, 3, 5],
[0, 2, 2, 3, 5],
[2, 5, 3, 0, 2, 3, 0, 3],
[6, 1, 2, 7, 9, 3, 4, 5, 10, 8],
[103, 9, 1, 7, 11, 15, 25, 201, 209, 107, 5],
[-45, -2, -5],
]:
print("source unsorted list: %s" % unsorted)
h = Heap()
h.build_heap(unsorted)
print("after build heap: ", end=" ")
h.display()
print("max value: %s" % h.get_max())
print("delete max value: ", end=" ")
h.display()
h.insert(100)
print("after insert new value 100: ", end=" ")
h.display()
h.heap_sort()
print("heap sort: ", end=" ")
h.display()
print()
if __name__ == "__main__":
main()