heap
사용 하는 방법을 보여 줍니다 있는 힙 Visual C++에서 표준 템플릿 라이브러리 (STL) 함수입니다.
template<class RandomAccessIterator> inline
void make_heap(
RandomAccessIterator First,
RandomAccessIterator Last
)
template<class RandomAccessIterator> inline
void sort_heap(
RandomAccessIterator First,
RandomAccessIterator Last
)
template<class RandomAccessIterator> inline
void push_heap(
RandomAccessIterator First,
RandomAccessIterator Last
)
template<class RandomAccessIterator> inline
void pop_heap(
RandomAccessIterator First,
RandomAccessIterator Last
)
설명
[!참고]
프로토타입에 클래스/매개 변수 이름은 헤더 파일에서 버전이 일치 하지 않습니다.일부 가독성을 높이기 위해 수정 되었습니다.
힙 이진 트리 같은 구성 요소를 시퀀스입니다.각 힙 요소를 트리 노드에 해당합니다.시퀀스의 첫 번째 값 [First...Last) 루트 이며 힙에 있는 가장 큰 값입니다.다음 힙의 모든 요소를 만족: 부모 보다 작거나 같은 모든 요소입니다.가장 큰 요소는 루트에 저장 하 고 모든 자식을 점점 더 작은 값을 포함 합니다.Make_heap 함수 변환 범위 [First...Last)에 힙.Sort_heap 함수를 사용 하 여 생성 된 시퀀스를 정렬에 make_heap 함수입니다.Push_heap 함수가 힙을 새 값을 삽입 합니다.Pop_heap 함수를 첫 번째 및 마지막 요소에 의해 지정 된 힙의 서로 [First, Last), 및 다음 힙 속성을 복원 하기 전에 하나 시퀀스의 길이 줄입니다.Nonpredicate 버전의 힙 함수 사용 연산자 < 비교 합니다.
예제
// heapfunc.cpp
// compile with: /EHsc
//
// Functions:
// make_heap : convert a sequence to a heap
// sort_heap : sort a heap
// push_heap : insert an element in a heap
// pop_heap : remove the top element from a heap
// disable warning C4786: symbol greater than 255 characters,
// okay to ignore
#pragma warning(disable: 4786)
#include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
using namespace std;
int main()
{
const int VECTOR_SIZE = 8 ;
// Define a template class vector of int
typedef vector<int > IntVector ;
//Define an iterator for template class vector of strings
typedef IntVector::iterator IntVectorIt ;
IntVector Numbers(VECTOR_SIZE) ;
IntVectorIt it ;
// Initialize vector Numbers
Numbers[0] = 4 ;
Numbers[1] = 10;
Numbers[2] = 70 ;
Numbers[3] = 10 ;
Numbers[4] = 30 ;
Numbers[5] = 69 ;
Numbers[6] = 96 ;
Numbers[7] = 100;
// print content of Numbers
cout << "Numbers { " ;
for(it = Numbers.begin(); it != Numbers.end(); it++)
cout << *it << " " ;
cout << " }\n" << endl ;
// convert Numbers into a heap
make_heap(Numbers.begin(), Numbers.end()) ;
cout << "After calling make_heap\n" << endl ;
// print content of Numbers
cout << "Numbers { " ;
for(it = Numbers.begin(); it != Numbers.end(); it++)
cout << *it << " " ;
cout << " }\n" << endl ;
// sort the heapified sequence Numbers
sort_heap(Numbers.begin(), Numbers.end()) ;
cout << "After calling sort_heap\n" << endl ;
// print content of Numbers
cout << "Numbers { " ;
for(it = Numbers.begin(); it != Numbers.end(); it++)
cout << *it << " " ;
cout << " }\n" << endl ;
//insert an element in the heap
Numbers.push_back(7) ;
push_heap(Numbers.begin(), Numbers.end()) ;
// you need to call make_heap to re-assert the
// heap property
make_heap(Numbers.begin(), Numbers.end()) ;
cout << "After calling push_heap and make_heap\n" << endl ;
// print content of Numbers
cout << "Numbers { " ;
for(it = Numbers.begin(); it != Numbers.end(); it++)
cout << *it << " " ;
cout << " }\n" << endl ;
// remove the root element from the heap Numbers
pop_heap(Numbers.begin(), Numbers.end()) ;
cout << "After calling pop_heap\n" << endl ;
// print content of Numbers
cout << "Numbers { " ;
for(it = Numbers.begin(); it != Numbers.end(); it++)
cout << *it << " " ;
cout << " }\n" << endl ;
}
Output
Numbers { 4 10 70 10 30 69 96 100 }
After calling make_heap
Numbers { 100 30 96 10 4 69 70 10 }
After calling sort_heap
Numbers { 4 10 10 30 69 70 96 100 }
After calling push_heap and make_heap
Numbers { 100 69 96 30 4 70 10 10 7 }
After calling pop_heap
Numbers { 96 69 70 30 4 7 10 10 100 }
요구 사항
헤더: <algorithm>