일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래밍
- 연결리스트
- 알고리즘
- go channel
- a tour of go
- C++ gui 라이브러리
- tour of go
- 리듬게임
- JUCE
- 백준
- Docker
- JUCE라이브러리
- 운영체제
- OS
- C언어
- C++ library
- vim-go
- gui
- go
- LOB
- JUCE library
- 공룡책
- 자료구조
- JUCE 튜토리얼
- c++ heap
- C++ gui
- 코딩
- Nebula
- BOJ
- C++
Archives
- Today
- Total
CafeM0ca
[자료구조/알고리즘] heap과 heap sort 본문
반응형
자료구조 heap
특징
- merge sort처럼 추가 배열이 필요 없음
- complete binary tree에 기반함으로 O(nlogn)의 성능을 보임
- heap property
- max heap property: 부모는 자식보다 크거나 같음
- min heap property: 부모는 자식보다 작거나 같음
- heap property
- 논리적으로는 배열로 구현가능함
- 루트 노드: A[1]
- A[i]의 부모 = A[i/2]
- A[i]의 왼쪽 자식 = A[i*2]
- A[i]의 오른쪽 자식 = A[i*2+1]
소스코드
- heap.hpp
#include <iostream>
#include <vector>
template<typename type>
class max_heap{
public:
max_heap();
void insert(type);
void remove(type);
int find(type);
void sort();
void print();
void heapify(int);
type get(type);
type operator[](const int);
size_t size() const;
int get_left_child_idx(int);
int get_right_child_idx(int);
int get_parent_idx(int);
type get_left_child(int);
type get_right_child(int);
type get_parent(int);
private:
std::vector<type> data;
size_t len = 0;
};
- heap.cpp
#include "heap.hpp"
#include <iostream>
using namespace std;
int main() {
max_heap<int> heap;
heap.insert(1);
heap.print();
heap.insert(6);
heap.print();
heap.insert(3);
heap.print();
heap.insert(2);
heap.print();
heap.insert(5);
heap.print();
heap.insert(13);
heap.print();
heap.insert(11);
heap.print();
heap.insert(9);
heap.print();
heap.insert(15);
heap.print();
heap.insert(17);
heap.print();
heap.remove(15);
heap.print();
cout << "\n" << "\n" << "heap sort!!!\n";
heap.sort();
heap.print();
return 0;
}
template<typename type>
max_heap<type>::max_heap() {
// 편의를 위해 안쓰는 데이터
data.push_back(0);
}
template<typename type>
void max_heap<type>::insert(type d) {
++this->len;
data[this->len] = d;
for(int idx = this->len; idx > 1; idx = get_parent_idx(idx)) {
if(data[idx] < get_parent(idx)) break;
swap(data[idx], data[get_parent_idx(idx)]);
}
}
template<typename type>
void max_heap<type>::remove(type t) {
if(len == 0) return;
int t_idx = find(t);
if(!t_idx) return;
swap(data[t_idx], data[len]);
this->len--;
heapify(t_idx);
}
template<typename type>
void max_heap<type>::heapify(int idx){
if(idx < 1) return;
// 부모보다 작을 경우
if(data[idx] >= get_left_child(idx) && data[idx] >= get_right_child(idx)) return;
int bigger_idx = get_left_child(idx) > get_right_child(idx) ? get_left_child_idx(idx) : get_right_child_idx(idx);
swap(data[idx], data[bigger_idx]);
heapify(bigger_idx);
}
template<typename type>
int max_heap<type>::find(type t) {
for(int i=1; i<=this->len; i++) {
if(t == data[i]) return i;
}
return 0;
}
template<typename type>
void max_heap<type>::sort() {
// sort 하는 과정에서 길이를 하나씩 줄여줘야 heapify 할 때 겹치지 않음.
int heap_len = this->len;
for(int i = this->len; i > 1; i--) {
swap(data[i], data[1]);
this->len--;
heapify(1);
}
this->len = heap_len; // 원래 길이로 복구
}
template<typename type>
void max_heap<type>::print() {
cout << "=====print heap=====\n";
for(int i = 1; i <= this->len; i++) {
cout << data[i] << ' ';
}
cout << '\n';
}
template<typename type>
int max_heap<type>::get_left_child_idx(int p_idx) {
if(p_idx * 2 > this->len) return 0;
return p_idx*2;
}
template<typename type>
int max_heap<type>::get_right_child_idx(int p_idx) {
if(p_idx * 2+1 > this->len) return 0;
return p_idx*2+1;
}
template<typename type>
int max_heap<type>::get_parent_idx(int p_idx) {
if(p_idx < 0 || p_idx > this->len) return 0;
return p_idx / 2;
}
template<typename type>
type max_heap<type>::get_left_child(int p_idx) {
return data[get_left_child_idx(p_idx)];
}
template<typename type>
type max_heap<type>::get_right_child(int p_idx) {
return data[get_right_child_idx(p_idx)];
}
template<typename type>
type max_heap<type>::get_parent(int p_idx) {
return data[get_parent_idx(p_idx)];
}
template<typename type>
type max_heap<type>::get(type t) {
return data[find(t)];
}
template<typename type>
size_t max_heap<type>::size() const{
return this->len;
}
template<typename type>
type max_heap<type>::operator[](const int idx) {
if(idx < 1 && idx > this->len) return data[0];
return data[idx];
}
반응형
'Programming > 자료구조|알고리즘' 카테고리의 다른 글
[자료구조] red-black 트리 (0) | 2020.01.15 |
---|---|
[자료구조] priority queue 우선순위 큐 (0) | 2020.01.11 |
[알고리즘] quick sort (2) | 2019.12.30 |
[자료구조]Deque(C++ std::list) (0) | 2018.06.08 |
[알고리즘]선택정렬(C++) (0) | 2018.06.02 |
Comments