unordered_map
1. 创建 unordered_map
对象
#include <unordered_map>
#include <string>
int main() {
// 默认构造函数
std::unordered_map<std::string, int> map1;
// 初始化列表构造函数
std::unordered_map<std::string, int> map2 = {{"apple", 1}, {"banana", 2}};
// 拷贝构造函数
std::unordered_map<std::string, int> map3(map2);
return 0;
}
2. 插入
insert
插入一个键值对
map1.insert({"orange", 3}); map1.insert(std::make_pair("grape", 4));
operator[]
通过键插入或访问值。如果键不存在,会插入一个默认值。
map1["apple"] = 10; // 插入或修改 int value = map1["apple"]; // 访问
3. 访问元素
at
访问指定键的值,如果键不存在会抛出
std::out_of_range
异常。int value = map1.at("apple");
operator[]
访问或插入指定键的值。
int value = map1["apple"];
4. 删除元素
erase
删除指定键的元素。
map1.erase("apple"); // 删除键为 "apple" 的元素
清空所有元素
map1.clear();
5. 查找元素
find
查找指定键的元素,返回迭代器。如果未找到,返回
end()
。auto it = map1.find("apple"); if (it != map1.end()) { std::cout << "Found: " << it->first << " -> " << it->second << std::endl; } else { std::cout << "Not found" << std::endl; }
count
返回指定键的元素个数(对于
unordered_map
,只能是 0 或 1)。if (map1.count("apple") > 0) { std::cout << "Key exists" << std::endl; }
6. 容量相关
size
返回容器中元素的数量。
std::cout << "Size: " << map1.size() << std::endl;
empty
检查容器是否为空。
if (map1.empty()) { std::cout << "Map is empty" << std::endl; }
7. 迭代器
begin
和end
用于遍历容器。
for (auto it = map1.begin(); it != map1.end(); ++it) {
std::cout << it->first << " -> " << it->second << std::endl;
}
- 范围 for 循环
for (const auto& pair : map1) {
std::cout << pair.first << " -> " << pair.second << std::endl;
}