Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
What are Heaps? Priority Queue | Real World Usage Like NewsFeed Design
Feb 5, 2025
98 views
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
Binary tree, Binary search tree, full and complete binary tree we can combine these ideas together so that we can learn a new assistant data structure which is HEAP.
From heap, we can learn about priority queue which is a variation on the queue data structure and is much more helpful .
Before understanding what is heap?
Let's first understand why do we need heap?
We use heap every day, using facebook, instagram, linkedin , youtube
every thing organizes data based on a priority. For example, facebook might show you the top post that matched your profile based preferences, or videos that has maximum retention rate.
With array, we have random access, it allowed us to randomly access any element using index. In linked list, we can change things dynamically, but finding a node is linear time of O(N).
Heaps are little bit different, compared to binary search tree, look up takes more time but what's effective?
Why use binary heap?
Binary heaps are really really great at doing comparative operation.
A complete binary tree are ones where every single level is full expect for the very last level. But if there are nodes in the last level it must be pushed to the left as possible.
Two Variations on Heap:
Max Heap
Keeping these rules in mind, the main thing to focus on is that the root node of a max heap is the greatest value in this entire heap.
Min Heap:
Up until now, working with binary tree, we get the root node as an object.
Only difference between array and object of tree node is that using array we need to figure out some mathematical formula that help us define the relationship between nodes.
Think about the relationship related to indices of the values inside our array.
Mathematical Relationships:
1. Parent Node:
To get the parent of any node
10 has index of 5, using this formula
2. Left Child:
To get the left child of any node
let's find the left chid of 40, 40 has index 1
3. Right Child
To get the right child of any node
let's find the right child of 40, index = 1
Insertion:
Insert 45
The only way we can insert 45 is at the next available sport. Following BFS order
20 < 45 , and also 45 is greater than 40.
We need to rearrange our max heap.
Steps to Follow:
1. Take 45 and it's immediate parent i.e 20, then compare, is 45 greater than 20?
2. Again, compare the new parent i.e (45) greather than it's immediate parent i.e (40)?
3. Then compare again, is 45 greater than 50?
Thus our heap is valid and new final heap.
**************** With Array********************
In the exact same vein, what we need to do, we just insert 45 at the end of an array.
1. Compare new value i.e 45 with it's immediate parent value and keep comparing and swapping value until find it's final resting point.
2. Then we compare again,
3. Compare one more time,
Thus the final resting point
Now, what about removing the nodes from Heap?
The reason why we implement the heap, particularly max heap is: we supply values, & whenever we want to retrieve a value , it has to give the greatest value amongst the value we supplied.
So this is why max heap, whenever we talk about removal, deletion or retrieving a value form this heap, the only condition we want to satisfy is that we are getting the greatest value, which is root value in max heap.
let call remove here, which will remove the 75 and return it
Now we need to restructure our heap so we can maintain not only the rule that the max heap has greatest value at the top of the tree, but also it is still a complete binary tree.
Procedure to remove:
1. We are going to take the right most value at the last level as placeholder root
2. Starting from the root value, it's two children. Which one is greater value?
3. Do the same iteration with 40 again, amongst it's children which one is greater?
4. Once again, we going to say does 49 has two children?
So now we know 40 is at it's final resting point.
Now we see that 50 is the greatest value inside the max heap once again.
**************** With Array********************
1. Remove 75, and push 40 in it's place
2. Now let's compare and find the correct place of our new value.
3. Once again , we take 40 @ index 1 and find it's two children
4. Once again we take 40 @ position 3, we get it's child
#dataStructures #algorithm #systemDesign #NewsFeed #javascript