Negate 함수는 값의 부호를 변경하기 위해 주어진 값을 부정하는 데 사용됩니다. 음수 값을 양수로 또는 그 반대로 변경합니다.
함수 프로토타입:
function transform(a_begin, a_end, a1_begin, negate()): a_begin = lower bound of the array. a_end = upper bound of the array. a1_end = Lower bound of the second modified array. negate() = to negate the values of the array.
예시 코드
#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