C++ map swap() 函數(shù)使用方法及示例

C++ STL map(容器)

C ++ map swap()函數(shù)用于交換(或交換)兩個map的內(nèi)容,但是兩個map必須是相同類型的,盡管大小可能會有所不同。

語法

void swap (map& x);

參數(shù)

x:用于交換內(nèi)容的map容器。

返回值

沒有

實例1

讓我們看一個簡單的示例,將一個map的元素交換到另一個。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   map<char, int> m1 = {
      {'a', 1},
      {'b', 2},
      {'c', 3},
      {'d', 4},
      {'e', 5},
      };

   map<char, int> m2;

   m2.swap(m1);

   cout << "Map包含以下元素" << endl;

   for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

輸出:

Map包含以下元素
a = 1
b = 2
c = 3
d = 4
e = 5

在上面的示例中,Map m1具有五個元素,而m2為空。當您將m1交換為m2時,m1的所有元素都將交換為m2。

實例2

讓我們看一個簡單的示例,交換兩個map的內(nèi)容。

#include <iostream>
#include <map>

using namespace std;

int main ()
{
  map<char,int> map1,map2;

  map1['x']=100;
  map1['y']=200;

  map2['a']=110;
  map2['b']=220;
  map2['c']=330;

  map1.swap(map2);

  cout << "map1 包含:\n";
  for (map<char,int>::iterator it=map1.begin(); it!=map1.end(); ++it)
    cout << it->first << " => " << it->second << '\n';

  cout << "map2 包含:\n";
  for (map<char,int>::iterator it=map2.begin(); it!=map2.end(); ++it)
    cout << it->first << " => " << it->second << '\n';

  return 0;
}

輸出:

map1 包含:
a => 110
b => 220
c => 330

map2 包含:
x => 100
y => 200

在以上示例中,兩個Map(即map1和map2)的內(nèi)容相互交換。

實例3

讓我們看一個簡單的示例,交換兩個map的內(nèi)容。

#include<iostream>
#include<map>
using namespace std;
 
int main()
{
    map<int, char> map1, map2;
 
    map1[1] = 'a';
    map1[2] = 'b';
    map1[3] = 'c';
    map1[4] = 'd';  
 
    map2[5] = 'w';
    map2[6] = 'x';
    map2[7] = 'y';
 
    //交換map的元素
    swap(map1, map2);
 
    //打印map的元素
    cout << "map1:\n"<< "\tKEY\tELEMENT\n";
    for (auto it = map1.begin();
         it != map1.end(); it++)
 
        cout << "\t" << it->first << "\t" << it->second << '\n';
 
    cout << "map2:\n"<< "\tKEY\tELEMENT\n";
    for (auto it = map2.begin();
         it != map2.end(); it++)
 
        cout << "\t" << it->first << "\t" << it->second << '\n';
 
    return 0;
}

輸出:

map1:
	KEY	ELEMENT
	5	w
	6	x
	7	y
map2:
	KEY	ELEMENT
	1	a
	2	b
	3	c
	4	d

在上面的示例中,另一種形式的swap()函數(shù)用于交換兩個映射的內(nèi)容。

實例4

讓我們看一個簡單的實例。

#include <iostream>
#include <string>
#include <map>

using namespace std;

void show(const char *msg, map<string, int> mp);

int main() {
  map<string, int> m1, m2;

  m1.insert(pair<string, int>("A", 100));
  m1.insert(pair<string, int>("G", 300));
  m1.insert(pair<string, int>("B", 200));

  // 交換m1和m2的內(nèi)容。
  cout << "交換m1和m2。\n";
  m1.swap(m2);
  show("Contents of m2: ", m2);
  show("Contents of m1: ", m1);

 // Clear m1.
  m1.clear();
  if(m1.empty()) cout << "m1 為空.";

  return 0;
}

// 使用迭代器顯示map<string, int>的內(nèi)容。
void show(const char *msg, map<string, int> mp) {
  map<string, int>::iterator itr;

  cout << msg << endl;
  for(itr=mp.begin(); itr != mp.end(); ++itr)
    cout << "  " << itr->first << ", " << itr->second << endl;
  cout << endl;
}

輸出:

交換m1和m2。
m2內(nèi)容: 
  A, 100
  B, 200
  G, 300
m1內(nèi)容: 
m1 為空.

在上面的示例中,Mapm1的內(nèi)容被交換到Map m2,并且在交換Map m1 后已被清除。

C++ STL map(容器)

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清