将元素存储在unordered_set中,可以使用unordered_set的insert()方法将元素插入到集合中。unordered_set是一个哈希表实现的集合,它可以快速地查找和插入元素。
将它们存储在unordered_map中,可以使用unordered_map的insert()方法将元素插入到映射中。unordered_map是一个哈希表实现的映射,它可以快速地查找和插入键值对。
以下是一个示例代码,演示如何将元素存储在unordered_set中,并将它们存储在unordered_map中:
#include<iostream>
#include <unordered_set>
#include <unordered_map>
int main() {
std::unordered_set<int> set = {1, 2, 3, 4, 5};
std::unordered_map<int, int> map;
for (int i : set) {
map[i] = i * 2;
}
for (auto& p : map) {
std::cout << p.first << " -> " << p.second<< std::endl;
}
return 0;
}
输出结果:
1 -> 2
2 -> 4
3 -> 6
4 -> 8
5 -> 10
这个示例代码首先创建了一个unordered_set,其中包含了5个整数。然后,使用for循环将这些整数插入到unordered_map中,每个整数都作为键和值。最后,使用for循环打印出映射中的所有键值对。
领取专属 10元无门槛券
手把手带您无忧上云