Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/algorithm/iter swap"

From cppreference.com
< cpp‎ | algorithm
(Escape *a, *b requirements line to prevent incorrectly formatting with a bullet)
m (r2.7.3) (Robot: Adding de, fr, it, ja, pt, zh)
Line 80: Line 80:
 
{{dcl list end}}
 
{{dcl list end}}
  
 +
[[de:cpp/algorithm/iter swap]]
 
[[es:cpp/algorithm/iter swap]]
 
[[es:cpp/algorithm/iter swap]]
 +
[[fr:cpp/algorithm/iter swap]]
 +
[[it:cpp/algorithm/iter swap]]
 +
[[ja:cpp/algorithm/iter swap]]
 +
[[pt:cpp/algorithm/iter swap]]
 
[[ru:cpp/algorithm/iter swap]]
 
[[ru:cpp/algorithm/iter swap]]
 +
[[zh:cpp/algorithm/iter swap]]

Revision as of 18:28, 2 November 2012

 
 
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy, ranges::sort, ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
(C++11)                (C++11)(C++11)

Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
iter_swap
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17)(C++11)
(C++20)(C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
(C++11)
(C++17)
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
 

Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <algorithm>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
template< class ForwardIt1, class ForwardIt2 >
void iter_swap( ForwardIt1 a, ForwardIt2 b );
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> Template:ddcl list end

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

Contents

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.

Return value

(none)

Complexity

constant

Possible implementation

template<class ForwardIt1, class ForwardIt2>
void iter_swap(ForwardIt1 a, ForwardIt2 b)
{
   using std::swap;
   swap(*a, *b);
}

Example

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

#include <random>
#include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
#include <iterator>
 
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: ";
    copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " "));
 
    selection_sort(v.begin(), v.end());
 
    std::cout << "\nAfter sort: ";
    copy(v.begin(), v.end(), std::ostream_iterator<int>(std::cout, " "));
    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

See also

Template:cpp/algorithm/dcl list swapTemplate:cpp/algorithm/dcl list swap ranges