💡 퀵 접속: cpp.kr/replace_copy_if

replace_copy_if

C++ 표준 라이브러리의 알고리즘으로, 주어진 범위에서 특정 조건을 만족하는 요소들을 새로운 값으로 대체하여 다른 범위에 복사합니다. replace_copy_if는 원본 범위를 수정하지 않고, 대체된 결과를 다른 범위에 복사합니다.

기본 사용법

#include <iostream>
#include <vector>
#include <algorithm>

int main() {
    std::vector<int> numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    std::vector<int> result;
    
    std::cout << "원본 벡터: ";
    for (int n : numbers) std::cout << n << " ";
    std::cout << std::endl;
    
    // 짝수를 0으로 대체하여 복사
    std::replace_copy_if(numbers.begin(), numbers.end(),
                        std::back_inserter(result),
                        [](int n) { return n % 2 == 0; }, 0);
    
    std::cout << "짝수를 0으로 대체하여 복사한 결과: ";
    for (int n : result) std::cout << n << " ";
    std::cout << std::endl;
    
    std::cout << "원본 벡터는 변경되지 않음: ";
    for (int n : numbers) std::cout << n << " ";
    std::cout << std::endl;
    
    return 0;
}

실행 결과:

원본 벡터: 1 2 3 4 5 6 7 8 9 10
짝수를 0으로 대체하여 복사한 결과: 1 0 3 0 5 0 7 0 9 0
원본 벡터는 변경되지 않음: 1 2 3 4 5 6 7 8 9 10

문자열에서 사용

#include <iostream>
#include <string>
#include <algorithm>
#include <cctype>

int main() {
    std::string text = "Hello, World! 123";
    std::string result;
    
    std::cout << "원본 문자열: " << text << std::endl;
    
    // 숫자를 '#'으로 대체하여 복사
    std::replace_copy_if(text.begin(), text.end(),
                        std::back_inserter(result),
                        [](char c) { return std::isdigit(c); }, '#');
    
    std::cout << "숫자를 '#'으로 대체하여 복사한 결과: " << result << std::endl;
    std::cout << "원본 문자열은 변경되지 않음: " << text << std::endl;
    
    return 0;
}

실행 결과:

원본 문자열: Hello, World! 123
숫자를 '#'으로 대체하여 복사한 결과: Hello, World! ###
원본 문자열은 변경되지 않음: Hello, World! 123

사용자 정의 타입에서 사용

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

class Person {
    std::string name;
    int age;
public:
    Person(const std::string& n, int a) : name(n), age(a) {}
    
    void print() const {
        std::cout << name << " (" << age << "세)" << std::endl;
    }
    
    int getAge() const { return age; }
};

int main() {
    std::vector<Person> people = {
        Person("Alice", 20),
        Person("Bob", 30),
        Person("Charlie", 25),
        Person("David", 35),
        Person("Eve", 22)
    };
    std::vector<Person> result;
    
    std::cout << "원본 목록:" << std::endl;
    for (const auto& person : people) {
        person.print();
    }
    
    // 30세 이상인 Person 객체들을 Eve(30세)로 대체하여 복사
    Person new_person("Eve", 30);
    std::replace_copy_if(people.begin(), people.end(),
                        std::back_inserter(result),
                        [](const Person& p) { return p.getAge() >= 30; },
                        new_person);
    
    std::cout << "\n30세 이상인 사람들을 Eve(30세)로 대체하여 복사한 결과:" << std::endl;
    for (const auto& person : result) {
        person.print();
    }
    
    std::cout << "\n원본 목록은 변경되지 않음:" << std::endl;
    for (const auto& person : people) {
        person.print();
    }
    
    return 0;
}

실행 결과:

원본 목록:
Alice (20세)
Bob (30세)
Charlie (25세)
David (35세)
Eve (22세)

30세 이상인 사람들을 Eve(30세)로 대체하여 복사한 결과:
Alice (20세)
Eve (30세)
Charlie (25세)
Eve (30세)
Eve (22세)

원본 목록은 변경되지 않음:
Alice (20세)
Bob (30세)
Charlie (25세)
David (35세)
Eve (22세)

참고사항

  • replace_copy_if는 algorithm 헤더에 정의되어 있습니다.
  • 원본 범위를 수정하지 않습니다.
  • 시간 복잡도는 O(n)입니다.
  • 조건을 만족하는 모든 요소들이 새로운 값으로 대체되어 복사됩니다.
  • 요소의 순서는 유지됩니다.
  • 대상 범위는 충분한 공간이 있어야 합니다.
  • back_inserter를 사용하면 대상 컨테이너가 자동으로 확장됩니다.
  • replace_if는 원본 범위를 직접 수정하는 버전입니다.
  • replace_copy는 특정 값을 가진 요소들을 대체하여 복사하는 버전입니다.
함수 설명
replace_copy_if(first, last, result, pred, new_value) 범위 [first, last)에서 조건 pred를 만족하는 요소들을 new_value로 대체하여 result부터 시작하는 범위에 복사