티스토리 뷰
class MaxHeap {
constructor() {
this.heap = [];
}
swap(arr, x, y) {
let temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
return;
}
empty() {
if (this.heap.length == 0) {
return true;
}
return false;
}
insert(value) {
this.heap.push(value);
this.bubbleUp();
}
bubbleUp() {
let currentIndex = this.heap.length - 1;
while (currentIndex > 0) {
const parentIndex = Math.floor((currentIndex - 1) / 2);
if (this.heap[parentIndex] >= this.heap[currentIndex]) break;
swap(this.heap,parentIndex,currentIndex);
currentIndex = parentIndex;
}
}
extractMax() {
if (this.heap.length == 1) {
return this.heap.pop();
}
const max = this.heap[0];
this.heap[0] = this.heap.pop();
this.sinkDown(0);
return max;
}
sinkDown(index) {
const leftIndex = 2 * index + 1;
const rightIndex = 2 * index + 2;
const length = this.heap.length;
let largestIndex = index;
if (leftIndex < length && this.heap[leftIndex] > this.heap[largestIndex]) {
largestIndex = leftIndex;
}
if (rightIndex < length && this.heap[rightIndex] > this.heap[largestIndex]) {
largestIndex = rightIndex;
}
if (largestIndex !== index) {
swap(this.heap,largestIndex,index);
this.sinkDown(largestIndex);
}
}
}
728x90
'자료구조 알고리즘 > JavaScript 자료구조 알고리즘' 카테고리의 다른 글
JavaScript) 최소 힙 (0) | 2021.09.16 |
---|---|
JavaScript) 덱 Deque (0) | 2021.09.13 |
JavaScript) 큐 Queue (0) | 2021.09.13 |
JavaScript) 스택 Stack (0) | 2021.09.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접비
- create db
- node.js
- 롱베케이션
- BFS
- 투포인터
- 면접질문
- MySQL
- 투포인터 연습
- 개발자면접
- 서버점검
- 서버개발
- 로드나인
- 그래프
- DB 생성
- 최소공통조상
- 다이나밍프로그래밍
- 다이나믹프로그래밍
- MOD
- 은둔청년체험
- create databases;
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함