make_heap
Converts a range into a heap
Definition
The make_heap() algorithm is defined in the standard header <algorithm> and in the nonstandard backward-compatibility header <algo.h>.
Interface
#include <algorithm>
template < class RandomAccessIterator >
void make_heap(
RandomAccessIterator first,
RandomAccessIterator last
);
template < class RandomAccessIterator, class BinaryPredicate >
void make_heap(
RandomAccessIterator first,
RandomAccessIterator last,
BinaryPredicate comp
);Parameters:
| Parameter | Description |
| first | A random-access iterator addressing the position of the first element in the range to be converted into a heap |
| last | A random-access iterator addressing the position one past the final element in the range to be converted into a heap |
| comp | User-defined predicate function object that defines sense in which one element is less than another. A binary predicate takes two arguments and returns true when satisfied and false when not satisfied |
Description
Make_heap() function reorders the elements between first and last in order to create a heap.
The first version compares objects using operator< and the second compares objects using a function object comp.
Return Value
None.
Complexity
The complexity is linear; performs at most 3*(last - first) comparisons.
References
See Also
- http://www.codecogs.com/reference/computing/stl/algorithms/heap/is_heap.php"is_heap"
- http://www.codecogs.com/reference/computing/stl/algorithms/heap/pop_heap.php"pop_heap"
- http://www.codecogs.com/reference/computing/stl/algorithms/heap/push_heap.php"push_heap"
- http://www.codecogs.com/reference/computing/stl/algorithms/heap/sort_heap.php"sort_heap"