April 2018
Intermediate to advanced
292 pages
6h 44m
English
A binary heap can be implemented either from scratch or you can use some of the already-available implementations. One of the solutions is named Hippie and can be installed to the project using the NuGet Package Manager. The library contains implementation of a few variants of heaps, including binary, binomial, and Fibonacci heaps, which are presented and described in this chapter of the book.
The library contains a few classes, such as the MultiHeap generic class, which is common for various variants of heaps, including binary ones. However, if the same class is used for binary, binomial, and Fibonacci ...