일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tour of go
- JUCE 튜토리얼
- 운영체제
- 알고리즘
- 프로그래밍
- c++ heap
- 백준
- 리듬게임
- JUCE library
- a tour of go
- JUCE
- C++ gui
- 자료구조
- go
- C언어
- C++ library
- BOJ
- go channel
- OS
- 연결리스트
- Docker
- JUCE라이브러리
- 코딩
- C++
- vim-go
- 공룡책
- Nebula
- C++ gui 라이브러리
- gui
- LOB
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