C++ Template Library Module37 Tenouk
C++ Template Library Module37 Tenouk
--THE STL--
ALGORITHM PART V
Note: Compiled using Microsoft Visual C++ .Net, win32 empty console mode application. g++ compilation
example is given at the end of this Module.
Abilities
set_symmetric_difference()
- Unites all of the elements that belong to one, but not both, of the sorted source ranges into a single,
sorted destination range, where the ordering criterion may be specified by a binary predicate.
Parameters
Parameter Description
An input iterator addressing the position of the first element in the first of two
_First1 sorted source ranges to be united and sorted into a single range representing
the symmetric difference of the two source ranges.
An input iterator addressing the position one past the last element in the first
_Last1 of two sorted source ranges to be united and sorted into a single range
representing the symmetric difference of the two source ranges.
An input iterator addressing the position of the first element in second of two
_First2 consecutive sorted source ranges to be united and sorted into a single range
representing the symmetric difference of the two source ranges.
An input iterator addressing the position one past the last element in second of
_Last2 two consecutive sorted source ranges to be united and sorted into a single
range representing the symmetric difference of the two source ranges.
An output iterator addressing the position of the first element in the
_Result destination range where the two source ranges are to be united into a single
sorted range representing the symmetric difference of the two source ranges.
User-defined predicate function object that defines the sense in which one
element is greater than another. The binary predicate takes two arguments and
_Comp
should return true when the first element is less than the second element and
false otherwise.
Table 37.1
www.tenouk.com Page 1 of 23
- An output iterator addressing the position one past the last element in the sorted destination range
representing the symmetric difference of the two source ranges.
- The sorted source ranges referenced must be valid; all pointers must be de-referenceable and within
each sequence the last position must be reachable from the first by incrementation.
- The destination range should not overlap either of the source ranges and should be large enough to
contain the destination range.
- The sorted source ranges must each be arranged as a precondition to the application of the merge()
algorithm in accordance with the same ordering as is to be used by the algorithm to sort the combined
ranges.
- The operation is stable as the relative order of elements within each range is preserved in the
destination range. The source ranges are not modified by the algorithm merge.
- The value types of the input iterators need be less-than comparable to be ordered, so that, given two
elements, it may be determined either that they are equivalent, in the sense that neither is less than the
other or that one is less than the other. This results in an ordering between the nonequivalent elements.
- When there are equivalent elements in both source ranges, the elements in the first range precede the
elements from the second source range in the destination range.
- If the source ranges contain duplicates of an element, then the destination range will contain the
absolute value of the number by which the occurrences of those elements in the one of the source
ranges exceeds the occurrences of those elements in the second source range.
- The complexity of the algorithm is linear with at most 2*((_Last1 – _First1)–(_Last2 –
_First2))–1 comparisons for nonempty source ranges.
//algorithm, set_symmetric_difference()
#include <vector>
#include <algorithm>
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1a, vec1b, vec1(12);
vector <int>::iterator Iter1a, Iter1b, Iter1, Result1;
int j;
for(j =-3; j <= 3; j++)
vec1b.push_back(j);
www.tenouk.com Page 2 of 23
for(Iter2a = vec2a.begin(); Iter2a != vec2a.end(); Iter2a++)
cout<<*Iter2a<<" ";
cout<<endl;
Output:
www.tenouk.com Page 3 of 23
set_union()
- Unites all of the elements that belong to at least one of two sorted source ranges into a single, sorted
destination range, where the ordering criterion may be specified by a binary predicate.
Parameters
Parameter Description
An input iterator addressing the position of the first element in the first of two
_First1 sorted source ranges to be united and sorted into a single range representing the
union of the two source ranges.
An input iterator addressing the position one past the last element in the first of
_Last1 two sorted source ranges to be united and sorted into a single range representing
the union of the two source ranges.
An input iterator addressing the position of the first element in second of two
_First2 consecutive sorted source ranges to be united and sorted into a single range
representing the union of the two source ranges.
An input iterator addressing the position one past the last element in second of
_Last2 two consecutive sorted source ranges to be united and sorted into a single range
representing the union of the two source ranges.
_Result An output iterator addressing the position of the first element in the destination
range where the two source ranges are to be united into a single sorted range
www.tenouk.com Page 4 of 23
representing the union of the two source ranges.
User-defined predicate function object that defines the sense in which one element
is greater than another. The binary predicate takes two arguments and should
_Comp
return true when the first element is less than the second element and false
otherwise.
Table 37.2
- The return value is an output iterator addressing the position one past the last element in the sorted
destination range representing the union of the two source ranges.
- The sorted source ranges referenced must be valid; all pointers must be de-referenceable and within
each sequence the last position must be reachable from the first by incrementation.
- The destination range should not overlap either of the source ranges and should be large enough to
contain the destination range.
- The sorted source ranges must each be arranged as a precondition to the application of the merge()
algorithm in accordance with the same ordering as is to be used by the algorithm to sort the combined
ranges.
- The operation is stable as the relative order of elements within each range is preserved in the
destination range. The source ranges are not modified by the algorithm merge().
- The value types of the input iterators need be less-than comparable to be ordered, so that, given two
elements, it may be determined either that they are equivalent (in the sense that neither is less than the
other) or that one is less than the other. This results in an ordering between the nonequivalent
elements.
- When there are equivalent elements in both source ranges, the elements in the first range precede the
elements from the second source range in the destination range. If the source ranges contain duplicates
of an element, then the destination range will contain the maximum number of those elements that
occur in both source ranges.
- The complexity of the algorithm is linear with at most 2*((_Last1 – _First1)–(_Last2 –
_First2))–1 comparisons.
//algorithm, set_union()
#include <vector>
#include <algorithm>
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector<int> vec1a, vec1b, vec1(12);
vector<int>::iterator Iter1a, Iter1b, Iter1, Result1;
//Constructing vectors vec1a & vec1b with default less than ordering
int i;
for(i = -3; i <= 3; i++)
vec1a.push_back(i);
int j;
for(j =-3; j <= 3; j++)
vec1b.push_back(j);
www.tenouk.com Page 5 of 23
cout<<*Iter1b<<" ";
cout<<endl;
Output:
www.tenouk.com Page 6 of 23
sort()
- Arranges the elements in a specified range into a non-descending order or according to an ordering
criterion specified by a binary predicate.
template<class RandomAccessIterator>
void sort(
RandomAccessIterator _First,
RandomAccessIterator _Last
);
template<class RandomAccessIterator, class Pr>
void sort(
RandomAccessIterator _First,
RandomAccessIterator _Last,
BinaryPredicate _Comp
);
Parameters
Parameter Description
A random-access iterator addressing the position of the first element in the range to
_First
be sorted.
A random-access iterator addressing the position one past the final element in the
_Last
range to be sorted.
User-defined predicate function object that defines the comparison criterion to be
_Comp satisfied by successive elements in the ordering. A binary predicate takes two
arguments and returns true when satisfied and false when not satisfied.
Table 37.3
- The range referenced must be valid; all pointers must be de-referenceable and within the sequence the
last position is reachable from the first by incrementation.
- Elements are equivalent, but not necessarily equal, if neither is less than the other. The sort()
algorithm is not stable and so does not guarantee that the relative ordering of equivalent elements will
be preserved. The algorithm stable_sort() does preserve this original ordering.
- The average of a sort complexity is O(N log N), where N = _Last – _First.
//algorithm, sort()
#include <vector>
#include <algorithm>
www.tenouk.com Page 7 of 23
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1; //container
vector <int>::iterator Iter1; //iterator
int k;
for(k = 0; k <= 15; k++)
vec1.push_back(k);
random_shuffle(vec1.begin(), vec1.end());
sort(vec1.begin(), vec1.end());
cout<<"\nSorted vector vec1 data:\n";
for(Iter1 = vec1.begin(); Iter1 != vec1.end(); Iter1++)
cout<<*Iter1<<" ";
cout<<endl;
Output:
sort_heap()
template<class RandomAccessIterator>
void sort_heap(
RandomAccessIterator _First,
RandomAccessIterator _Last
);
template<class RandomAccessIterator, class Pr>
void sort_heap(
RandomAccessIterator _First,
www.tenouk.com Page 8 of 23
RandomAccessIterator _Last,
BinaryPredicate _Comp
);
Parameters
Parameter Description
A random-access iterator addressing the position of the first element in the target
_First
heap.
A random-access iterator addressing the position one past the final element in the
_Last
target heap.
User-defined predicate function object that defines sense in which one element is
_Comp less than another. A binary predicate takes two arguments and returns true when
satisfied and false when not satisfied.
Table 37.4
- After the application if this algorithm, the range it was applied to is no longer a heap.
- This is not a stable sort because the relative order of equivalent elements is not necessarily preserved.
- Heaps are an ideal way to implement priority queues and they are used in the implementation of the
Standard Template Library container adaptor priority_queue Class.
- The range referenced must be valid; all pointers must be de-referenceable and within the sequence the
last position is reachable from the first by incrementation.
- The complexity is at most N log N, where N = (_Last – _First).
//algorithm, sort_heap()
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1, vec2;
vector <int>::iterator Iter1, Iter2;
int i;
for(i = 1; i <= 10; i++)
vec1.push_back(i);
random_shuffle(vec1.begin(), vec1.end());
www.tenouk.com Page 9 of 23
}
Output:
stable_partition()
- Classifies elements in a range into two disjoint sets, with those elements satisfying a unary predicate
preceding those that fail to satisfy it, preserving the relative order of equivalent elements.
Parameters
Parameter Description
A bidirectional iterator addressing the position of the first element in the
_First
range to be partitioned.
A bidirectional iterator addressing the position one past the final element in
_Last
the range to be partitioned.
User-defined predicate function object that defines the condition to be
_Pred satisfied if an element is to be classified. A predicate takes single argument
and returns true or false.
Table 37.5
- The return value is a bidirectional iterator addressing the position of the first element in the range to not
satisfy the predicate condition.
- The range referenced must be valid; all pointers must be de-referenceable and within the sequence the
last position is reachable from the first by incrementation.
- Elements a and b are equivalent, but not necessarily equal, if both Pr (a, b) is false and Pr (b, a) if
false, where Pr is the parameter-specified predicate. The stable_ partition() algorithm is
stable and guarantees that the relative ordering of equivalent elements will be preserved.
- The algorithm partition() does not necessarily preserve this original ordering.
//algorithm, stable_partition()
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1, vec2;
vector <int>::iterator Iter1, Iter2, result;
int i;
for(i = 0; i <= 10; i++)
www.tenouk.com Page 10 of 23
vec1.push_back(i);
int j;
for(j = 0; j <= 4; j++)
vec1.push_back(3);
random_shuffle(vec1.begin(), vec1.end());
Output:
stable_sort()
- Arranges the elements in a specified range into a non-descending order or according to an ordering
criterion specified by a binary predicate and preserves the relative ordering of equivalent elements.
template<class BidirectionalIterator>
void stable_sort(
BidirectionalIterator _First,
BidirectionalIterator _Last
);
template<class BidirectionalIterator, class BinaryPredicate>
void stable_sort(
BidirectionalIterator _First,
BidirectionalIterator _Last,
BinaryPredicate _Comp
);
Parameters
Parameter Description
A bidirectional iterator addressing the position of the first element in the range to
_First
be sorted.
A bidirectional iterator addressing the position one past the final element in the
_Last
range to be sorted.
User-defined predicate function object that defines the comparison criterion to be
_Comp satisfied by successive elements in the ordering. A binary predicate takes two
arguments and returns true when satisfied and false when not satisfied.
Table 37.6
www.tenouk.com Page 11 of 23
- The range referenced must be valid; all pointers must be de-referenceable and within the sequence the
last position is reachable from the first by incrementation.
- Elements are equivalent, but not necessarily equal, if neither is less than the other. The sort()
algorithm is stable and guarantees that the relative ordering of equivalent elements will be preserved.
- The run-time complexity of stable_sort() depends on the amount of memory available, but the
best case (given sufficient memory) is O(N log N) and the worst case is O(N(log N)2), where N
= _Last–First. Usually, the sort() algorithm is significantly faster than stable_sort().
//algorithm, stable_sort()
#include <vector>
#include <algorithm>
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1;
vector <int>::iterator Iter1;
random_shuffle(vec1.begin(), vec1.end());
cout<<"Random shuffle vector vec1 data:\n";
for(Iter1 = vec1.begin(); Iter1 != vec1.end(); Iter1++)
cout<<*Iter1<<" ";
cout<<endl;
sort(vec1.begin(), vec1.end());
cout<<"\nDefault sorted vector vec1 data:\n";
for(Iter1 = vec1.begin(); Iter1 != vec1.end(); Iter1++)
cout<<*Iter1<<" ";
cout<<endl;
Output:
swap()
www.tenouk.com Page 12 of 23
- Exchanges the values of the elements between two types of objects, assigning the contents of the first
object to the second object and the contents of the second to the first.
template<class Type>
void swap(
Type& _Left,
Type& _Right
);
Parameters
Parameter Description
_Left The first object to have its elements exchanged.
_Right The second object to have its elements exchanged.
Table 37.7
- This algorithm is exceptional in the STL in being designed to operate on individual elements rather
than on a range of elements.
//algorithm, swap()
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1, vec2;
vector <int>::iterator Iter1, Iter2, result;
int i;
for(i = 10; i<= 20; i++)
vec1.push_back(i);
int j;
for(j = 10; j <= 15; j++)
vec2.push_back(j);
swap(vec1, vec2);
Output:
www.tenouk.com Page 13 of 23
swap_ranges()
- Exchanges the elements of one range with the elements of another, equal sized range.
Parameters
Parameter Description
A forward iterator pointing to the first position of the first range whose
_First1
elements are to be exchanged.
A forward iterator pointing to one past the final position of the first range
_Last1
whose elements are to be exchanged.
A forward iterator pointing to the first position of the second range whose
_First2
elements are to be exchanged.
Table 37.8
- The return value is a forward iterator pointing to one past the final position of the second range whose
elements are to be exchanged.
- The ranges referenced must be valid; all pointers must be de-referenceable and within each sequence
the last position is reachable from the first by incrementation. The second range has to be as large as
the first range.
- The complexity is linear with _Last1 – _First1 swaps performed. If elements from containers
of the same type are being swapped, them the swap() member function from that container should be
used, because the member function typically has constant complexity.
//algorithm, swap_ranges()
#include <vector>
#include <deque>
#include <algorithm>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1;
deque <int> deq1;
vector <int>::iterator vec1Iter1;
deque<int>::iterator deq1Iter;
int i;
for(i = 10; i <= 15; i++)
vec1.push_back(i);
int j;
for(j =24; j <= 29; j++)
deq1.push_back(j);
www.tenouk.com Page 14 of 23
for(vec1Iter1 = vec1.begin(); vec1Iter1 != vec1.end(); vec1Iter1++)
cout<<*vec1Iter1<<" ";
cout<<endl;
Output:
transform()
- Applies a specified function object to each element in a source range or to a pair of elements from two
source ranges and copies the return values of the function object into a destination range.
Parameters
Parameter Description
An input iterator addressing the position of the first element in the first source
_First1
range to be operated on.
An input iterator addressing the position one past the final element in the first
_Last1
source range operated on.
An input iterator addressing the position of the first element in the second
_First2
source range to be operated on.
_Result An output iterator addressing the position of the first element in the
www.tenouk.com Page 15 of 23
destination range.
User-defined unary function object used in the first version of the algorithm
that is applied to each element in the first source range or A user-defined
_Func
binary function object used in the second version of the algorithm that is
applied pairwise, in a forward order, to the two source ranges.
Table 37.9
- The return value is an output iterator addressing the position one past the final element in the
destination range that is receiving the output elements transformed by the function object.
- The ranges referenced must be valid; all pointers must be de-referenceable and within each sequence
the last position must be reachable from the first by incrementation. The destination range must be
large enough to contain the transformed source range.
- If _Result is set equal to _First1 in the first version of the algorithm, then the source and
destination ranges will be the same and the sequence will be modified in place. But the _Result may
not address a position within the range [_First1 +1, _Last1).
- The complexity is linear with at most (_Last1 – _First1) comparisons.
//algorithm, transform()
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1, vec2(7), vec3(7);
vector <int>::iterator Iter1, Iter2, Iter3;
www.tenouk.com Page 16 of 23
multiplies<int>());
Output:
unique()
- Removes duplicate elements that are adjacent to each other in a specified range.
template<class ForwardIterator>
ForwardIterator unique(
ForwardIterator _First,
ForwardIterator _Last
);
template<class ForwardIterator, class Pr>
ForwardIterator unique(
ForwardIterator _First,
ForwardIterator _Last,
BinaryPredicate _Comp
);
Parameters
Parameter Description
A forward iterator addressing the position of the first element in the range to be
_First
scanned for duplicate removal.
A forward iterator addressing the position one past the final element in the range to
_Last
be scanned for duplicate removal.
User-defined predicate function object that defines the condition to be satisfied if
_Comp two elements are to be taken as equivalent. A binary predicate takes two arguments
and returns true when satisfied and false when not satisfied.
Table 37.10
- The return value is a forward iterator to the new end of the modified sequence that contains no
consecutive duplicates, addressing the position one past the last element not removed.
- Both forms of the algorithm remove the second duplicate of a consecutive pair of equal elements.
- The operation of the algorithm is stable so that the relative order of the undeleted elements is not
changed.
- The range referenced must be valid; all pointers must be de-referenceable and within the sequence the
last position is reachable from the first by incrementation.
- The number of elements in the sequence is not changed by the algorithm unique() and the elements
beyond the end of the modified sequence are de-referenceable but not specified.
- The complexity is linear, requiring (_Last – _First)–1 comparisons.
- List provides a more efficient member function unique(), which may perform better.
- These algorithms cannot be used on an associative container.
www.tenouk.com Page 17 of 23
//algorithm, unique()
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1;
vector <int>::iterator vec1_Iter1, vec1_Iter2, vec1_Iter3,
vec1_NewEnd1, vec1_NewEnd2, vec1_NewEnd3;
int i;
for(i = 0; i <= 3; i++)
{
vec1.push_back(4);
vec1.push_back(-4);
}
int j;
for(j = 1; j <= 4; j++)
vec1.push_back(8);
vec1.push_back(9);
vec1.push_back(9);
Output:
www.tenouk.com Page 18 of 23
unique_copy()
- Copies elements from a source range into a destination range except for the duplicate elements that are
adjacent to each other.
Parameters
Parameter Description
A forward iterator addressing the position of the first element in the source range
_First
to be copied.
A forward iterator addressing the position one past the final element in the source
_Last
range to be copied.
An output iterator addressing the position of the first element in the destination
_Result
range that is receiving the copy with consecutive duplicates removed.
User-defined predicate function object that defines the condition to be satisfied if
_Comp two elements are to be taken as equivalent. A binary predicate takes two
arguments and returns true when satisfied and false when not satisfied.
Table 37.11
- The return value is an output iterator addressing the position one past the final element in the
destination range that is receiving the copy with consecutive duplicates removed.
- Both forms of the algorithm remove the second duplicate of a consecutive pair of equal elements.
- The operation of the algorithm is stable so that the relative order of the undeleted elements is not
changed.
- The ranges referenced must be valid; all pointers must be de-referenceable and within a sequence the
last position is reachable from the first by incrementation.
- The complexity is linear, requiring (_Last – _First) comparisons.
//algorithm, unique_copy()
#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>
using namespace std;
www.tenouk.com Page 19 of 23
if(elem1 < 0)
elem1 = - elem1;
if(elem2 < 0)
elem2 = - elem2;
return (elem1 == elem2);
};
int main()
{
vector <int> vec1;
vector <int>::iterator vec1_Iter1, vec1_Iter2,
vec1_NewEnd1, vec1_NewEnd2;
int i;
for(i = 0; i <= 1; i++)
{
vec1.push_back(8);
vec1.push_back(-8);
}
int j;
for(j = 0; j <= 2; j++)
vec1.push_back(5);
vec1.push_back(9);
vec1.push_back(9);
int k;
for(k = 0; k <= 5; k++)
vec1.push_back(12);
Output:
upper_bound()
www.tenouk.com Page 20 of 23
- Finds the position of the first element in an ordered range that has a value that is greater than a
specified value, where the ordering criterion may be specified by a binary predicate.
Parameters
Parameter Description
_First The position of the first element in the range to be searched.
_Last The position one past the final element in the range to be searched.
The value in the ordered range that needs to be exceeded by the value of the
_Val
element addressed by the iterator returned.
User-defined predicate function object that defines sense in which one element is
_Comp less than another. A binary predicate takes two arguments and returns true when
satisfied and false when not satisfied.
Table 37.12
- The return value is a forward iterator addressing the position of the first element in an ordered range
that has a value that is greater than a specified value, where the ordering criterion may be specified by a
binary predicate.
- The sorted source range referenced must be valid; all pointers must be de-referenceable and within the
sequence the last position must be reachable from the first by incrementation.
- The sorted range must each be arranged as a precondition to the application of the upper_bound()
algorithm in accordance with the same ordering as is to be used by the algorithm to sort the combined
ranges.
- The range is not modified by the algorithm merge().
- The value types of the forward iterators need be less-than comparable to be ordered, so that, given two
elements, it may be determined either that they are equivalent (in the sense that neither is less than the
other) or that one is less than the other. This results in an ordering between the nonequivalent elements
- The complexity of the algorithm is logarithmic for random-access iterators and linear otherwise, with
the number of steps proportional to (_Last1 – _First1).
//algorithm, upper_bound()
#include <vector>
#include <algorithm>
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1;
vector <int>::iterator Iter1, Result1;
www.tenouk.com Page 21 of 23
for(int j = -3; j <= 0; j++)
vec1.push_back(j);
sort(vec1.begin(), vec1.end());
cout<<"Original vector vec1 data with range\nsorted by the"
<<" binary predicate less than is:\n";
for(Iter1 = vec1.begin(); Iter1 != vec1.end(); Iter1++)
cout<<*Iter1<<" ";
cout<<endl;
Output:
//******algosort.cpp*********
//algorithm, sort()
www.tenouk.com Page 22 of 23
#include <vector>
#include <algorithm>
//For greater<int>()
#include <functional>
#include <iostream>
using namespace std;
int main()
{
vector <int> vec1; //container
vector <int>::iterator Iter1; //iterator
int k;
for(k = 0; k <= 15; k++)
vec1.push_back(k);
random_shuffle(vec1.begin(), vec1.end());
sort(vec1.begin(), vec1.end());
cout<<"\nSorted vector vec1 data:\n";
for(Iter1 = vec1.begin(); Iter1 != vec1.end(); Iter1++)
cout<<*Iter1<<" ";
cout<<endl;
www.tenouk.com Page 23 of 23