Map::swap() in C++
Do not miss this exclusive book on Binary Tree Problems. Get it now for free.
Table of content:
- Introduction to Maps
- Detailed view of Map::swap()
- Syntax to swap two Maps
- Examples to swap two maps
- Time and Space complexity
- Application
- Questions
Introduction to Maps
In C++, a map is an associative container provided by the Standard Template Library (STL) that stores elements in a sorted manner, allowing for efficient searching. It has a time complexity of O(log n) for operations like insertion, deletion, and search.
A map stores elements in a mapped manner, where each element has a unique key associated with its value. The keys are sorted internally, enabling fast retrieval and traversal of elements based on their key values. This ordering property of maps makes them useful when elements need to be accessed in a sorted manner or when efficient key-based lookups are required.
Here we talk about one of the function of Map, which is Map::swap()
Detailed view of Map::swap()
The swap() function in C++ is used to interchange the elements of two variables. Similarly, the Map::swap() member function is used to swap the elements of two map objects.
The swap() function in C++ is a generic algorithm that exchanges the values of two objects, effectively swapping their contents. It can be used with various data types, including fundamental types and user-defined types, to quickly exchange their values.
In the case of maps, the Map::swap() member function specifically swaps the elements of two map objects. When called on a map instance, it exchanges its contents with another map, effectively swapping all key-value pairs between them. This operation is performed efficiently, as it involves a direct exchange of internal data structures rather than individual element-by-element swaps.
Using the swap() function or the Map::swap() member function can be useful when there is a need to efficiently exchange the contents of two maps, avoiding the need for manual element-by-element swapping or copying.
Note: For swapping, Maps must be of same type, although sizes may differ.
Syntax to swap two Maps
Maps can be swapped in C++ using two methods:
- std::swap(Map1, Map2): This method uses the std::swap function to exchange the contents of Map1 and Map2. After the swap, Map1 will contain the elements that were originally in Map2, and Map2 will contain the elements that were originally in Map1.
- Map1.swap(Map2): This method swaps the contents of Map1 and Map2. Similar to the first method, after the swap, Map1 will hold the elements from Map2, and Map2 will hold the elements from Map1.
In both cases, Map1 refers to the first map object, and Map2 refers to the second map object.
Examples to swap two maps
Method 1: std::swap(Map1, Map2)
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
map<int, string> map1;
map<int, string> map2;
map1[1] = "I";
map1[2] = "Love";
map1[3] = "C++";
map2[4] = "Hello";
map2[5] = "World";
cout << "Before swapping:" << "\n";
cout << "Map 1: ";
for (const auto& pair : map1) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
cout << "Map 2: ";
for (const auto& pair : map2) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
//Implementing_std::swap(Map1, Map2)
swap(map1, map2);
cout << "\nAfter swapping:" << "\n";
cout << "Map 1: ";
for (const auto& pair : map1) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
cout << "Map 2: ";
for (const auto& pair : map2) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
return 0;
}
/*
Output:
Before swapping:
Map 1: 1:I 2:Love 3:C++
Map 2: 4:Hello, 5:World
After swapping:
Map 1: 4:Hello, 5:World
Map 2: 1:I 2:Love 3:C++ */
Method 2: Map1.swap(Map2)
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main() {
map<int, string> map1;
map<int, string> map2;
map1[1] = "I";
map1[2] = "Love";
map1[3] = "C++";
map2[4] = "Hello, ";
map2[5] = "World";
cout << "Before swapping:" << "\n";
cout << "Map 1: ";
for (const auto& pair : map1) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
cout << "Map 2: ";
for (const auto& pair : map2) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
//Implementing_Map1.swap(Map2)
map1.swap(map2);
cout << "\nAfter swapping:" << "\n";
cout << "Map 1: ";
for (const auto& pair : map1) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
cout << "Map 2: ";
for (const auto& pair : map2) {
cout << pair.first << ":" << pair.second << " ";
}
cout << "\n";
return 0;
}
/*
Output:
Before swapping:
Map 1: 1:I 2:Love 3:C++
Map 2: 4:Hello, 5:World
After swapping:
Map 1: 4:Hello, 5:World
Map 2: 1:I 2:Love 3:C++ */
Time and Space complexity
For both methods, std::swap(map1, map2) and map1.swap(map2), the time and space complexity will be the same.
In general, std::swap for std::map is implemented using constant time and constant space complexity. It typically swaps the internal data structures of the two maps, which involves updating some pointers or references without actually moving or copying the elements.
Therefore, the time complexity of both methods, swap(map1, map2) and map1.swap(map2), is O(1), indicating that the execution time does not depend on the size of the maps. Similarly, the space complexity of both is also O(1), as the function does not allocate any additional memory based on the size of the maps.
Application
The primary purpose of map::swap()and map1.swap(map2) is to exchange the elements between two maps. By swapping the contents of two maps, you can effectively transfer the elements from one map to another without incurring the cost of copying or moving the elements individually. This can be useful in scenarios where you want to transfer the data ownership or efficiently switch between different maps.
Questions
Q1: What is the purpose of the map::swap() function in C++?
Q2: What is a requirement for swapping maps using the map::swap() function in C++?
Sign up for FREE 3 months of Amazon Music. YOU MUST NOT MISS.