Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

History

History
27 lines (19 loc) 路 668 Bytes

iter_swap.md

File metadata and controls

27 lines (19 loc) 路 668 Bytes

iter_swap

Description : Swaps the values of the objects pointed to by two iterators..

Example :

    int array1[] = {10, 20, 30, 40, 50};
    std:: vector<int> vector1{60, 70, 80, 90};
    std:: iter_swap(array1, vector1.begin());		//array1: [60] 20 30 40 50
    							//vector1: [10] 70 80 90

  	std::iter_swap(array1 + 3, vector1.begin() + 2);	//array1: 60 20 30 [80] 50
  								//vector1: 10 70 [40] 90

  	std::cout<<"vector1 contains:"<<'\n';
  	for(std::vector<int> ::iterator it = vector1.begin(); it < vector1.end(); ++it)
	{
  		std::cout<<*it<<" ";
	}

  	std::cout<<'\n';

Run Code