<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <algorithm>
|
||
template< class InputIt, class OutputIt, class UnaryOperation > OutputIt transform( InputIt first1, InputIt last1, OutputIt d_first, UnaryOperation unary_op ); |
(1) | |
template< class InputIt1, class InputIt2, class OutputIt, class BinaryOperation > OutputIt transform( InputIt1 first1, InputIt1 last1, InputIt2 first2, OutputIt d_first, BinaryOperation binary_op ); |
(2) | |
std::transform applique la fonction donnée à un large et stocke le résultat dans une autre gamme, à partir de d_first . std::transform applies the given function to a range and stores the result in another range, beginning at d_first. You can help to correct and verify the translation. Click here for instructions.
unary_op opération unaire est appliquée à la plage définie par [first1, last1). Dans la deuxième version de la binary_op opération binaire est appliqué à des paires d'éléments de deux gammes: l'une définie par [first1, last1) et l'autre commençant à first2 .unary_op is applied to the range defined by [first1, last1). In the second version the binary operation binary_op is applied to pairs of elements from two ranges: one defined by [first1, last1) and the other beginning at first2.You can help to correct and verify the translation. Click here for instructions.
Paramètres
| first1, last1 | - | la première gamme d'éléments à transformer
Original: the first range of elements to transform The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| first2 | - | le début de la seconde gamme d'éléments de transformation
Original: the beginning of the second range of elements to transform The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| d_first | - | le début de la plage de destination, peut être égal à ou
first1 first2 Original: the beginning of the destination range, may be equal to first1 or first2 The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| unary_op | - | unary operation function object that will be applied. The signature of the function should be equivalent to the following:
The signature does not need to have |
| binary_op | - | binary operation function object that will be applied. The signature of the function should be equivalent to the following:
The signature does not need to have |
| Type requirements | ||
-InputIt must meet the requirements of InputIterator.
| ||
-InputIt1 must meet the requirements of InputIterator.
| ||
-InputIt2 must meet the requirements of InputIterator.
| ||
-OutputIt must meet the requirements of OutputIterator.
| ||
Retourne la valeur
You can help to correct and verify the translation. Click here for instructions.
Complexité
1)
std::distance(first1, last1) applications de unary_opstd::distance(first1, last1) applications of unary_opYou can help to correct and verify the translation. Click here for instructions.
2)
std::distance(first1, last1) applications de binary_opstd::distance(first1, last1) applications of binary_opYou can help to correct and verify the translation. Click here for instructions.
Exigences
unary_op et binary_op n'ont pas d'effets secondaires. (avant C++11)unary_op and binary_op have no side effects. (avant C++11)You can help to correct and verify the translation. Click here for instructions.
unary_op et binary_op n'invalident pas les itérateurs, y compris les itérateurs de fin, ou de modifier les éléments des gammes concernées. (depuis C++11)unary_op and binary_op do not invalidate any iterators, including the end iterators, or modify any elements of the ranges involved. (depuis C++11)You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Mise en œuvre possible
| First version |
|---|
template<class InputIt, class OutputIt, class UnaryOperation>
OutputIt transform(InputIt first1, InputIt last1, OutputIt d_first,
UnaryOperation unary_op)
{
while (first1 != last1) {
*d_first++ = unary_op(*first1++);
}
return d_first;
}
|
| Second version |
template<class InputIt1, class InputIt2,
class OutputIt, class BinaryOperation>
OutputIt transform(InputIt first1, InputIt last1, InputIt first2,
OutputIt d_first, BinaryOperation binary_op)
{
while (first1 != last1) {
*d_first++ = binary_op(*first1++, *first2++);
}
return d_first;
}
|
Exemple
You can help to correct and verify the translation. Click here for instructions.
#include <string>
#include <cctype>
#include <algorithm>
#include <iostream>
int main()
{
std::string s("hello");
std::transform(s.begin(), s.end(), s.begin(), (int (*)(int))std::toupper);
std::cout << s;
}
Résultat :
HELLO
Voir aussi
applique une fonction à une série d'éléments Original: applies a function to a range of elements The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction générique) | |