Binary Heap
Binary Heap theory
What is Binary Heap
Definition : Binary Heap is a Binary Tree with some special properties.
Heap property
- Value of any given node must be <= value of its children(Min-Heap)
- Value of any given node must be >= value of its children(Max-Heap)
Complete tree
- All levels are completely filled except possibly the last level and the last level has all keys as left as possible.
- This makes Binary Heap ideal candidate for Array Implementation.
Why should we learn Binary Heap?
There are cases when we want to find ‘min/max’ number among set of numbers in log(n) time. Also, we want to make sure that Inserting additional numbers does not take more than O(log n) time.
Possible Solutions:
- Store the numbers in sorted Array <- Take O(n) time complexity
- Store the numbers in Linked List in sorted manner <- Take O(n) time complexity
Binary Heap will solve this problem with O(log n).
Types of Binary Heap
- Min-Heap : If the value of each node is less than or equal to value of both of its children.
- Max-Heap : If the value of each node is more than or equal to value of both of its children.
Practical Use
- Prim’s Algorithm
- Heap Sort
- Priority Queue
Binary Heap - Array Representaion
- Implementation options
- Array based Implementation
- Reference/Pointer based Implementation
Insertion in Heap
1 | insertValueInHeap(value) |
- Time Complexity - O(log n)
- Space Complexity - O(log n)
ExtractMin from Heap
1 | extractMin() |
- Time Complexity - O(log n)
- Space Complexity - O(log n)
Delete Heap
1 | deleteHeap() |
- Time Complexity - O(1)
- Space Complexity - O(1)
Reason why we don’t use Reference implementation(linked list) on Binary Heap
- When we try to extract min/max number from the tree using reference, we need to loop all over the tree to find the value. This procedure takes O(n) time complexity. Inefficient!!
출처 : “Data Structures & Algorithms” by DS GUY