C++ Dictionary Key Value Değerlerini Ters Çevirmek
"C++" Programlama dilinde "Dictionary Key Value Değerlerini Ters Çevirmek" ile ilgili kod örneği aşağıda belirtilmiştir.
#include <iostream>
#include <map>
int main() {
std::map<char, int> ascii_dict {
{'A', 65},
{'B', 66},
{'C', 67},
{'D', 68}
};
std::map<int, char> new_dict;
for (const auto& entry : ascii_dict) {
new_dict[entry.second] = entry.first;
}
for (const auto& entry : new_dict) {
std::cout << entry.first << ": " << entry.second << std::endl;
}
return 0;
}