Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- arduino compiler
- Deque
- Visual Micro
- c++
- Stack
- C언어
- 자료구조
- 운영체제
- 통계학
- map
- 아두이노 컴파일러
- WinAPI
- 라인트레이서
- set
- 컴퓨터 그래픽스
- 아두이노
- LineTracer
- stl
- queue
- Algorithm
- list
- priority_queue
- Array
- Arduino
- directx
- 시스템프로그래밍
- 아두이노 소스
- html
- 수광 소자
- vector
Archives
- Today
- Total
Kim's Programming
Algorithm - make_heap() 본문
원형)
1 2 3 4 5 6 7 8 | //기본형 template <class RandomAccessIterator> void make_heap (RandomAccessIterator first, RandomAccessIterator last); //사용자 정의형 template <class RandomAccessIterator, class Compare> void make_heap (RandomAccessIterator first, RandomAccessIterator last, Compare comp ); | cs |
의미)
[Iterator first ,Iterator last)사이에 있는 데이터들을 최대힙으로 정렬합니다.
소스)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include<iostream> #include<algorithm> #include<vector> void Print(const std::vector<int>& target) { for (std::vector<int>::const_iterator iterPos = target.cbegin(); iterPos != target.cend(); iterPos++) std::cout << *iterPos << " "; std::cout << std::endl; } void main() { std::vector<int> vector = { 10,5,20,15,30 }; std::make_heap(vector.begin(), vector.end()); Print(vector); } | cs |
리턴값)
없음
결과)
'STL - Algorithm > Algorithm - Heap' 카테고리의 다른 글
Algorithm - is_heap_until() (0) | 2017.06.24 |
---|---|
Algorithm - is_heap() (0) | 2017.06.24 |
Algorithm - sort_heap() (0) | 2017.06.24 |
Algorithm - pop_heap() (0) | 2017.06.24 |
Algorithm - push_heap() (0) | 2017.06.24 |