Min Heap in Python - GeeksforGeeks
Excerpt
A Min-Heap is a complete binary tree in which the value in each internal node is smaller than or equal to the values in the children of that node. Mapping the elements of a heap into an array is trivial if a node is stored at index k, then its left
Last Updated : 10 Jan, 2023
A Min-Heap is a complete binary tree in which the value in each internal node is smaller than or equal to the values in the children of that node.
Mapping the elements of a heap into an array is trivial: if a node is stored at index k, then its left child is stored at index 2k + 1 and its right child at index 2k + 2 for 0 based indexing and for 1 based indexing the left child will be at 2k and right child will be at 2k + 1.
Example of Min Heap :
5 13
/ \ / \
10 15 16 31
/ / \ / \
30 41 51 100 41
How is Min Heap represented ?
A Min Heap is a Complete Binary Tree. A Min heap is typically represented as an array. The root element will be at Arr[0]. For any ith node, i.e., Arr[i]:
- Arr[(i -1) / 2] returns its parent node.
- Arr[(2 * i) + 1] returns its left child node.
- Arr[(2 * i) + 2] returns its right child node.
Operations on Min Heap :
- getMin(): It returns the root element of Min Heap. Time Complexity of this operation is O(1).
- extractMin(): Removes the minimum element from MinHeap. Time Complexity of this Operation is O(Log n) as this operation needs to maintain the heap property (by calling heapify()) after removing root.
- insert(): Inserting a new key takes O(Log n) time. We add a new key at the end of the tree. If new key is larger than its parent, then we don’t need to do anything. Otherwise, we need to traverse up to fix the violated heap property.
Below is the implementation of Min Heap in Python –
- Python3
import
sys
class
MinHeap:
def
__init__(``self``, maxsize):
self``.maxsize
=
maxsize
self``.size
=
0
self``.Heap
=
[``0``]``*``(``self``.maxsize
+
1``)
self``.Heap[``0``]
=
-``1
*
sys.maxsize
self``.FRONT
=
1
def
parent(``self``, pos):
return
pos``/``/``2
def
leftChild(``self``, pos):
return
2
*
pos
def
rightChild(``self``, pos):
return
(``2
*
pos)
+
1
def
isLeaf(``self``, pos):
return
pos``*``2
>
self``.size
def
swap(``self``, fpos, spos):
self``.Heap[fpos],
self``.Heap[spos]
=
self``.Heap[spos],
self``.Heap[fpos]
def
minHeapify(``self``, pos):
if
not
self``.isLeaf(pos):
if
(``self``.Heap[pos] >
self``.Heap[``self``.leftChild(pos)]
or
self``.Heap[pos] >
self``.Heap[``self``.rightChild(pos)]):
if
self``.Heap[``self``.leftChild(pos)] <
self``.Heap[``self``.rightChild(pos)]:
self``.swap(pos,
self``.leftChild(pos))
self``.minHeapify(``self``.leftChild(pos))
else``:
self``.swap(pos,
self``.rightChild(pos))
self``.minHeapify(``self``.rightChild(pos))
def
insert(``self``, element):
if
self``.size >``=
self``.maxsize :
return
self``.size``+``=
1
self``.Heap[``self``.size]
=
element
current
=
self``.size
while
self``.Heap[current] <
self``.Heap[``self``.parent(current)]:
self``.swap(current,
self``.parent(current))
current
=
self``.parent(current)
def
Print``(``self``):
for
i
in
range``(``1``, (``self``.size``/``/``2``)``+``1``):
print``(``" PARENT : "``+
str``(``self``.Heap[i])``+``" LEFT CHILD : "``+
str``(``self``.Heap[``2
*
i])``+``" RIGHT CHILD : "``+
str``(``self``.Heap[``2
*
i
+
1``]))
def
minHeap(``self``):
for
pos
in
range``(``self``.size``/``/``2``,
0``,
-``1``):
self``.minHeapify(pos)
def
remove(``self``):
popped
=
self``.Heap[``self``.FRONT]
self``.Heap[``self``.FRONT]
=
self``.Heap[``self``.size]
self``.size``-``=
1
self``.minHeapify(``self``.FRONT)
return
popped
if
__name__
=``=
"__main__"``:
print``(``'The minHeap is '``)
minHeap
=
MinHeap(``15``)
minHeap.insert(``5``)
minHeap.insert(``3``)
minHeap.insert(``17``)
minHeap.insert(``10``)
minHeap.insert(``84``)
minHeap.insert(``19``)
minHeap.insert(``6``)
minHeap.insert(``22``)
minHeap.insert(``9``)
minHeap.minHeap()
minHeap.``Print``()
print``(``"The Min val is "
+
str``(minHeap.remove()))
Output :
The Min Heap is
PARENT : 3 LEFT CHILD : 5 RIGHT CHILD :6
PARENT : 5 LEFT CHILD : 9 RIGHT CHILD :84
PARENT : 6 LEFT CHILD : 19 RIGHT CHILD :17
PARENT : 9 LEFT CHILD : 22 RIGHT CHILD :10
The Min val is 3
Using Library functions :
We use heapq class to implement Heaps in Python. By default Min Heap is implemented by this class.
- Python3
from
heapq
import
heapify, heappush, heappop
heap
=
[]
heapify(heap)
heappush(heap,
10``)
heappush(heap,
30``)
heappush(heap,
20``)
heappush(heap,
400``)
print``(``"Head value of heap : "``+``str``(heap[``0``]))
print``(``"The heap elements : "``)
for
i
in
heap:
print``(i, end
=
' '``)
print``(``"\n"``)
element
=
heappop(heap)
print``(``"The heap elements : "``)
for
i
in
heap:
print``(i, end
=
' '``)
Output :
Head value of heap : 10
The heap elements :
10 30 20 400
The heap elements :
20 30 400
Are you looking to bridge the gap from Data Structures and Algorithms (DSA) to Software Development? Dive into our DSA to Development - Beginner to Advance Course on GeeksforGeeks, crafted for aspiring developers and seasoned programmers alike. Explore essential coding skills, software engineering principles, and practical application techniques through hands-on projects and real-world examples. Whether you’re starting your journey or aiming to refine your skills, this course empowers you to build robust software solutions. Ready to advance your programming prowess? Enroll now and transform your coding capabilities!
Similar Reads
[
Difference between Binary Heap, Binomial Heap and Fibonacci Heap
Binary Heap:A Binary Heap is a Binary Tree with following properties. It’s a complete binary tree i.e., all levels are completely filled except possibly the last level and the last level has all keys as left as possible. This property of Binary Heap makes them suitable to be stored in an array.A Binary Heap is either Min Heap or Max Heap. In a Min
2 min read
](https://www.geeksforgeeks.org/difference-between-binary-heap-binomial-heap-and-fibonacci-heap/)[
Convert Min Heap to Max Heap
Given an array representation of min Heap, convert it to max Heap. Examples: Input: arr[] = {3, 5, 9, 6, 8, 20, 10, 12, 18, 9} 3 / \ 5 9 / \ / \ 6 8 20 10 / \ /12 18 9 Output: arr[] = {20, 18, 10, 12, 9, 9, 3, 5, 6, 8} 20 / \ 18 10 / \ / \ 12 9 9 3 / \ /5 6 8 Input: arr[] = {3, 4, 8, 11, 13}Output: arr[] = {13, 11, 8, 4, 3} Approach: To solve the p
10 min read
](https://www.geeksforgeeks.org/convert-min-heap-to-max-heap/)[
Heap Sort for decreasing order using min heap
Given an array of elements, sort the array in decreasing order using min heap. Examples: Input : arr[] = {5, 3, 10, 1} Output : arr[] = {10, 5, 3, 1} Input : arr[] = {1, 50, 100, 25} Output : arr[] = {100, 50, 25, 1} Prerequisite: Heap sort using min heap. Algorithm : Build a min heap from the input data. At this point, the smallest item is stored
13 min read
](https://www.geeksforgeeks.org/heap-sort-for-decreasing-order-using-min-heap/)[
Difference between Min Heap and Max Heap
A Heap is a special Tree-based data structure in which the tree is a complete binary tree. Since a heap is a complete binary tree, a heap with N nodes has log N height. It is useful to remove the highest or lowest priority element. It is typically represented as an array. There are two types of Heaps in the data structure. Min-HeapIn a Min-Heap the
3 min read
](https://www.geeksforgeeks.org/difference-between-min-heap-and-max-heap/)[
When building a Heap, is the structure of Heap unique?
What is Heap? A heap is a tree based data structure where the tree is a complete binary tree that maintains the property that either the children of a node are less than itself (max heap) or the children are greater than the node (min heap). Properties of Heap: Structural Property: This property states that it should be A Complete Binary Tree. For
4 min read
](https://www.geeksforgeeks.org/when-building-a-heap-is-the-structure-of-heap-unique/)