일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- Nebula
- 코딩
- 프로그래밍
- 연결리스트
- 리듬게임
- LOB
- Docker
- 백준
- vim-go
- C++ gui 라이브러리
- 알고리즘
- C언어
- C++ library
- BOJ
- tour of go
- JUCE library
- go channel
- OS
- 운영체제
- JUCE
- JUCE라이브러리
- 공룡책
- go
- C++
- a tour of go
- c++ heap
- JUCE 튜토리얼
- C++ gui
- gui
Archives
- Today
- Total
목록Max Heap (1)
CafeM0ca
[BOJ] 11279 최대 힙
문제 해결 과정 자료구조 힙을 구현하여 insert와 remove 함수를 작성하여 해결한다. 문제의 제한시간은 1초이다. 따라서 insert 함수와 remove 함수를 O(log N) 시간으로 해결할 수 있도록 구현해야 한다. 시간이 빡빡한 문제이므로 cin.tie와 cin.sync_with_stdio를 꼭 해주자. 그리고 endl 대신 '\n' 으로 개행하자. 구현 #include #include using namespace std; template class max_heap{ public: max_heap(); void insert(type); void remove(int ); void print(); void heapify(int); type operator[](const int); ..
Programming/백준
2020. 1. 10. 02:52