溫馨提示×

C++ map iterator遍歷有哪些技巧

c++
小樊
115
2024-07-30 11:24:12
欄目: 編程語言

在C++中,可以使用迭代器遍歷std::map容器。以下是一些技巧:

  1. 使用auto關(guān)鍵字自動推導(dǎo)迭代器類型:
std::map<int, std::string> myMap;
// 使用auto關(guān)鍵字自動推導(dǎo)迭代器類型
for (auto it = myMap.begin(); it != myMap.end(); ++it) {
    // 迭代器操作
}
  1. 使用范圍for循環(huán):
std::map<int, std::string> myMap;
// 使用范圍for循環(huán)
for (const auto& pair : myMap) {
    // pair為鍵值對,first為鍵,second為值
}
  1. 使用迭代器的成員函數(shù):
std::map<int, std::string> myMap;
// 使用迭代器的成員函數(shù)
for (auto it = myMap.begin(); it != myMap.end(); ++it) {
    std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
}
  1. 使用find函數(shù)查找特定鍵值對:
std::map<int, std::string> myMap;
int keyToFind = 1;
auto it = myMap.find(keyToFind);
if (it != myMap.end()) {
    // 找到了特定鍵值對
    std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
} else {
    // 未找到特定鍵值對
    std::cout << "Key not found" << std::endl;
}

0