Skip to content

Instantly share code, notes, and snippets.

View besLisbeth's full-sized avatar

Yelyzaveta Boiko besLisbeth

View GitHub Profile
@besLisbeth
besLisbeth / heaps.js
Last active August 17, 2022 02:22
MinHeap, MaxHeap, and MedianHeap data structures
// This code was taken from the "JavaScript Data Structures and Algorithms" by Sammie Bae
// from the repository https://github.com/Apress/js-data-structures-and-algorithms,
// refactored to classes, and fixed the problem of adding '0' as the node value
// (it's not working correctly in the origin repository)
class Heap {
items = [];
constructor(values){