Home » C++ algorithm swap() function

C++ algorithm swap() function

by Online Tutorials Library

C++ Algorithm Functions swap()

C++ Algorithm swap() function swaps or say interchanges the values of two containers under reference.

Syntax

Parameter

a: It is the first container with some value.

b: It is another container with some value.

Return value

The function only swaps the values of two containers and does not return something.

Example 1

Output:

sg contains: 14 14 14 14 14 14  

Example 2

Output:

Value of ss before swapping: 9  Value of sg before swapping: 14  Value of ss after swapping: 14  Value of sg after swapping: 9  

Complexity

For arrays the function has N complexity as the operation of swapping is individually performed on each element. For non array the function has constant complexity.

Data races

Both the containers are undergo modification

Exceptions

The function throws an exception if any of the container elements throws one.

Next Topic

You may also like