TypeScript Binary Heap
Yesterday I converted a Binary Heap data structure in TypeScript. The original code is here, in the Eloquent JavaScript online book by Marijn Haverbeke.
In short, a Binary Heap is a common data structure for a priority queue. We want to put inside the queue many values (or an object) and you want to extract the smallest value (or the object with the smallest score) in the most efficient way.
This JS implementation the Eloquent Javascript book is pretty common, so I decided “to typify it”. The result is in the following Gist: