在C++中,可以使用迭代器來遍歷哈希表。以下是一個示例代碼:
#include <iostream>
#include <unordered_map>
int main() {
std::unordered_map<int, std::string> myMap = {
{1, "One"},
{2, "Two"},
{3, "Three"}
};
// 遍歷哈希表
for (auto it = myMap.begin(); it != myMap.end(); ++it) {
std::cout << "Key: " << it->first << ", Value: " << it->second << std::endl;
}
return 0;
}
在上面的示例中,我們使用unordered_map
來創建一個哈希表,并使用迭代器it
來遍歷哈希表。我們可以通過it->first
和it->second
來訪問哈希表中的鍵和值。