Namespaces
Variants

std:: swap (std::unordered_set)

From cppreference.net

헤더 파일에 정의됨 <unordered_set>
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_set < Key, Hash, KeyEqual, Alloc > & lhs,

std:: unordered_set < Key, Hash, KeyEqual, Alloc > & rhs ) ;
(C++11부터)
(C++17까지)
template < class Key, class Hash, class KeyEqual, class Alloc >

void swap ( std:: unordered_set < Key, Hash, KeyEqual, Alloc > & lhs,
std:: unordered_set < Key, Hash, KeyEqual, Alloc > & rhs )

noexcept ( /* see below */ ) ;
(C++17부터)
(C++26부터 constexpr)

std::swap 알고리즘을 std::unordered_set 에 대해 특수화합니다. lhs rhs 의 내용을 교환합니다. lhs. swap ( rhs ) 를 호출합니다.

목차

매개변수

lhs, rhs - 내용을 교환할 컨테이너들

복잡도

상수.

예외

noexcept 명세:
noexcept ( noexcept ( lhs. swap ( rhs ) ) )
(C++17부터)

예제

#include <algorithm>
#include <iostream>
#include <unordered_set>
int main()
{
    std::unordered_set<int> alice{1, 2, 3};
    std::unordered_set<int> bob{7, 8, 9, 10};
    auto print = [](const int& n) { std::cout << ' ' << n; };
    // 스왑 전 상태 출력
    std::cout << "Alice:";
    std::for_each(alice.begin(), alice.end(), print);
    std::cout << "\nBobby:";
    std::for_each(bob.begin(), bob.end(), print);
    std::cout << '\n';
    std::cout << "-- SWAP\n";
    std::swap(alice, bob);
    // 스왑 후 상태 출력
    std::cout << "Alice:";
    std::for_each(alice.begin(), alice.end(), print);
    std::cout << "\nBobby:";
    std::for_each(bob.begin(), bob.end(), print);
    std::cout << '\n';
}

가능한 출력:

Alice: 1 2 3
Bobby: 7 8 9 10
-- SWAP
Alice: 7 8 9 10
Bobby: 1 2 3

참고 항목

내용을 교환합니다
(public member function)