Open In App

Memory representation of Binomial Heap

Prerequisites: Binomial Heap

Binomial trees are multi-way trees typically stored in the left-child, right-sibling representation, and each node stores its degree. Binomial heaps are collection of binomial trees stored in ascending order of size. The root list in the heap is a linked list of roots of the Binomial heap. The degree of the nodes of the roots increase as on traversing the root list.



The number of binomial trees in a binomial heap can be found with the binary value of the number of nodes in the binomial heap. This article focuses on memory representation of binomial heaps.

Binomial Heap Node:

Types of nodes and their representations:

Representation of Full binomial heap:

The memory representation of each node of the Binomial heap given above can be illustrated using the following diagram:

Article Tags :