trekhleb / javascript-algorithms

📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
MIT License
184.97k stars 29.83k forks source link

Ad hoc versions of MinHeap, MaxHeap, and DisjointSet #1117

Closed trekhleb closed 3 months ago

trekhleb commented 3 months ago

JS misses some data structures that might be handy for the folks who are going through the coding interview process.

This PR contains several minimalistic (by their functionalities and implementation) data structures like MinHeap, MaxHeap, and DisjointSet that don't have external dependencies and that are easy to copy-paste and use during the coding interview if allowed by the interviewer.