여러 세트 요소를 단일 세트로 병합 여러 세트의 내용을 단일 세트로 쉽게 병합 할 수있는 std 라이브러리 또는 부스트 도구가 있는지 알고 싶습니다. 제 경우에는 병합하고 싶은 정수 세트가 있습니다. 다음과 같이 할 수 있습니다. std::set s1; std::set s2; // fill your sets s1.insert(s2.begin(), s2.end()); 을 요청하신 것 같습니다 std::set_union. 예: #include #include std::set s1; std::set s2; std::set s3; // Fill s1 and s2 std::set_union(std::begin(s1), std::end(s1), std::begin(s2), std::end(s2), std::inse..