Adobe Source Libraries 1.49.0
A collection of C++ libraries.
|
Functions | |
template<typename Iter, typename Pred> | |
std::pair< Iter, Iter > | gather (Iter first, Iter last, Iter pivot, Pred pred) |
iterator-based gather implementation | |
template<typename BidirectionalRange, typename Pred> | |
std::pair< typename boost::range_iterator< BidirectionalRange >::type, typename boost::range_iterator< BidirectionalRange >::type > | gather (BidirectionalRange &range, typename boost::range_iterator< BidirectionalRange >::type pivot, Pred pred) |
range-based gather implementation |
gather()
takes a collection of elements defined by a pair of iterators and moves the ones satisfying a predicate to them to a position (called the pivot) within the sequence. The algorithm is stable. The result is a pair of iterators that contains the items that satisfy the predicate.
Given an sequence containing:
0 1 2 3 4 5 6 7 8 9
a call to gather ( arr, arr + 10, arr + 4, IsEven ()) will result in:
1 3 0 2 4 6 8 5 7 9 |---|-----| first | second pivot
The problem is broken down into two basic steps, namely, moving the items before the pivot and then moving the items from the pivot to the end. These "moves" are done with calls to stable_partition.
The algorithm uses stable_partition, which will attempt to allocate temporary memory, but will work in-situ if there is none available.
If there is sufficient memory available, the run time is linear in N
. If there is not any memory available, then the run time is O(N log N)
.
std::pair< Iter, Iter > gather | ( | Iter | first, |
Iter | last, | ||
Iter | pivot, | ||
Pred | pred ) |
Definition at line 78 of file gather.hpp.
std::pair< typename boost::range_iterator< BidirectionalRange >::type, typename boost::range_iterator< BidirectionalRange >::type > gather | ( | BidirectionalRange & | range, |
typename boost::range_iterator< BidirectionalRange >::type | pivot, | ||
Pred | pred ) |
Definition at line 99 of file gather.hpp.