求反函数用于对给定值求反,从而更改值的符号。它将负值更改为正值,反之亦然。
function transform(a_begin, a_end, a1_begin, negate()): a_begin = 数组的下界。 a_end = 数组的上界。 a1_end = 第二个修改数组的下界。 negate() = 对数组的值求反。
#include <algorithm> #include <functional> #include <iostream> using namespace std; int main() { int a[] = { 4,6,7, -10, -20, -30 }; transform(a, a + 6, a, negate<int>()); for (int i = 0; i < 6; i++) cout << a[i] << ' '; return 0; }
输出结果
-4 -6 -7 10 20 30