heap
Ilustra como usar o heap funções de biblioteca STL (Standard Template) no Visual C++.
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
)
Comentários
Observação |
---|
Nomes de classe/parâmetro o protótipo não coincidem com a versão no arquivo de cabeçalho.Alguns foram modificados para melhorar a legibilidade. |
Uma pilha é uma seqüência de elementos organizados como uma árvore binária.Cada elemento de heap corresponde a um nó de árvore.O primeiro valor na seqüência [First...Last) é a raiz e é o maior valor no heap.Cada elemento na heap satisfaz o seguinte: cada elemento é menor ou igual ao seu pai.O maior elemento é armazenado na raiz e todos os filhos mantém valores progressivamente menores.O make_heap função converte o intervalo [First...Last) em uma pilha.O sort_heap função classifica uma seqüência que foi criada usando o make_heap função.O push_heap função insere um novo valor na pilha.O pop_heap função troca os elementos de primeiro e últimos na heap especificada pelo [First, Last) e, em seguida, reduz o comprimento da seqüência por um antes de restaurar a propriedade de heap.As versões nonpredicate da pilha de uso de funções operador < para comparações.
Exemplo
// 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 ;
}
Saída
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 }
Requisitos
Cabeçalho: <algorithm>