Skip to content

Instantly share code, notes, and snippets.

View zlrlo's full-sized avatar
🐥

jieunee zlrlo

🐥
  • Seoul, Republic of Korea
View GitHub Profile
@zlrlo
zlrlo / min_heap.js
Created May 23, 2024 16:38
[JS] Min Heap 구현
class MinHeap {
constructor() {
this.heap = [null];
}
push(value) {
this.heap.push(value);
let currentIndex = this.heap.length - 1;
let parentIndex = Math.floor(currentIndex / 2);