Basics of Heaps
Before getting into what is a heap, you gotta know where Heap is used. Heaps are used for Heap sort, sorting a list of numbers in O(n.logn). Interestingly Heaps are more frequent in implementing a Priority Queue rather than using for heap sort.
What ...
saiankit.hashnode.dev2 min read