Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vue.js
- 2022
- CSS
- 개발콘텐츠
- 반복줄이기
- reactjs
- react
- returnType
- TSDoc
- 폰트적용하기
- 티스토리꾸미기
- 성능최적화
- utilty type
- const 단언문
- JS console
- 타입좁히기
- React.js
- React Native
- 레이아웃쪼개기
- javascript
- click and drag
- 리액트
- 누구나 자료구조와 알고리즘
- Chart.js
- 공통컴포넌트
- typescript
- 커스텀
- NonNullable
- 제네릭
- 타입스크립트
Archives
- Today
- Total
몽땅뚝딱 개발자
📔 [스터디] 학습노트 - Heap 본문
✨ 힙(Heap)
1.1 정의
트리의 자료구조로, 특수한 종류의 이진트리이다.
가장 크거나 작은 원소를 알아내야 할 때 유리하다. 우선순위 큐를 구현할 때 효율적으로 쓰이는 자료구조이다.
1.2. js로 최소힙 구현하기
class MinHeap {
constructor() {
this.heap = [null]
}
push(value) {
this.heap.push(value)
let currentIndex = this.heap.length - 1
let parentIndex = Math.floor(currentIndex / 2)
// 현재 값보다 부모 값이 더 작을 떄 까지 (=최소힙의 형태를 만들 때 까지) swap 한다.
while (parentIndex !== 0 && this.heap[currentIndex] < this.heap[parentIndex]) {
this.swap(currentIndex, parentIndex)
currentIndex = parentIndex
parentIndex = Math.floor(currentIndex / 2)
}
}
pop(deleteTarget) {
if (this.isEmpty()) return
if (this.heap.length === 2) return this.heap.pop() // 루트 정점만 남은 경우
if (deleteTarget === TYPE.최댓값) {
const parentIndex = Math.floor((this.heap.length - 1) / 2);
const lastLeaf = this.heap.slice(parentIndex);
const max = Math.max(...lastLeaf);
this.swap(parentIndex + lastLeaf.indexOf(max), this.heap.length - 1);
return this.heap.pop();
}
const returnValue = this.heap[1]
this.heap[1] = this.heap.pop()
let currentIndex = 1
let leftIndex = 2
let rightIndex = 3
while (
this.heap[leftIndex] && this.heap[currentIndex] > this.heap[leftIndex] ||
this.heap[rightIndex] && this.heap[currentIndex] > this.heap[rightIndex]
) {
switch (true) {
case this.heap[leftIndex] === undefined:
this.swap(rightIndex, currentIndex)
break
case this.heap[rightIndex] === undefined:
this.swap(leftIndex, currentIndex)
break
case this.heap[leftIndex] > this.heap[rightIndex]:
this.swap(currentIndex, rightIndex)
currentIndex = rightIndex;
break
case this.heap[leftIndex] <= this.heap[rightIndex]:
this.swap(currentIndex, leftIndex)
currentIndex = leftIndex;
break
}
leftIndex = currentIndex * 2
rightIndex = currentIndex * 2 + 1
}
return returnValue
}
isEmpty() {
return this.heap.length === 1
}
swap(a, b) {
[this.heap[a], this.heap[b]] = [this.heap[b], this.heap[a]];
}
return() {
return this.heap
}
}
'Development > 알고리즘' 카테고리의 다른 글
[프로그래머스 | Javascript] Lv.1 기사단원의 무기 (0) | 2024.11.25 |
---|---|
[프로그래머스 | Javascript] Lv.1 모의고사 (0) | 2024.11.25 |
[프로그래머스 | Javascript] Lv.3 이중순위우선큐 (0) | 2024.01.21 |
[프로그래머스 | Javascript] Lv.2 다리를 지나는 트럭 (0) | 2024.01.20 |
[프로그래머스 | Javascript] KAKAO INTERNSHIP. 두 큐 합 같게 만들기 (0) | 2024.01.12 |
Comments