Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
map<int, string> test; for (auto& item : reverse(test)) делаю что то;
map<int, string> test; test[1] = "hello1"; test[2] = "hello2"; test[3] = "hello3"; for (auto it = test.rbegin(); it != test.rend(); it++) { cout << it->first << ": " << it->second << endl; }
3: hello3 2: hello2 1: hello1