The Wayback Machine - https://web.archive.org/web/20190830134810/https://en.cppreference.com/w/cpp/algorithm/iter_swap
Namespaces
Variants
Actions

std::iter_swap

From cppreference.com
< cpp‎ | algorithm
 
 
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Concepts and utilities: std::Sortable, std::projected, ...
Constrained algorithms: std::ranges::copy, std::ranges::sort, ...
Execution policies (C++17)
Non-modifying sequence operations
(C++11)(C++11)(C++11)
(C++17)
Modifying sequence operations
Operations on uninitialized storage
Partitioning operations
Sorting operations
Binary search operations
Set operations (on sorted ranges)
Heap operations
(C++11)
Minimum/maximum operations
(C++11)
(C++17)
Permutations
Numeric operations
C library
 
Defined in header <algorithm>
template<class ForwardIt1, class ForwardIt2 >
void iter_swap( ForwardIt1 a, ForwardIt2 b );
(until C++20)
template<class ForwardIt1, class ForwardIt2 >
constexprvoid iter_swap( ForwardIt1 a, ForwardIt2 b );
(since C++20)

Swaps the values of the elements the given iterators are pointing to.

Contents

[edit]Parameters

a, b - iterators to the elements to swap
Type requirements
-
ForwardIt1, ForwardIt2 must meet the requirements of LegacyForwardIterator.
-
*a, *b must meet the requirements of Swappable.

[edit]Return value

(none)

[edit]Complexity

constant

[edit]Possible implementation

template<class ForwardIt1, class ForwardIt2>constexprvoid iter_swap(ForwardIt1 a, ForwardIt2 b)// constexpr since C++20{usingstd::swap; swap(*a, *b);}

[edit]Example

The following is an implementation of selection sort in C++

#include <random>#include <vector>#include <iostream>#include <algorithm>#include <functional>   template<class ForwardIt>void selection_sort(ForwardIt begin, ForwardIt end){for(ForwardIt i = begin; i != end;++i) std::iter_swap(i, std::min_element(i, end));}   int main(){std::random_device rd;std::mt19937 gen(rd());std::uniform_int_distribution<> dist(-10, 10);std::vector<int> v; generate_n(back_inserter(v), 20, bind(dist, gen));   std::cout<<"Before sort: ";for(auto e : v)std::cout<< e <<" ";   selection_sort(v.begin(), v.end());   std::cout<<"\nAfter sort: ";for(auto e : v)std::cout<< e <<" ";std::cout<<'\n';}

Output:

Before sort: -7 6 2 4 -1 6 -9 -1 2 -5 10 -9 -5 -3 -5 -3 6 6 1 8 After sort: -9 -9 -7 -5 -5 -5 -3 -3 -1 -1 1 2 2 4 6 6 6 6 8 10

[edit]See also

swaps the values of two objects
(function template)[edit]
swaps two ranges of elements
(function template)[edit]
close