Binomial Heap

Home > Computer Science > Algorithms and data structures > Heaps and Priority Queues > Binomial Heap

A binomial heap is a collection of binomial trees. A binomial tree is a complete binary tree where the value of each node is greater than or equal to its children. It is efficient for implementing priority queues.