使用一个映射中的值作为C ++中另一个映射的键

时间:2015-10-14 10:23:35

标签: c++ dictionary unordered-map

我有一个针对房间数的酒店的unordered_map AvailableRooms。喜欢

Sheridan -> 10
Marriot ->12

我有一张地图hotelOnDate存储,字符串日期转换为针对酒店的unix时间。

142356789 -> Sheridan
142356749 -> Marriot

现在,当我尝试使用地图键访问酒店的unordered_map值时,我得到一个0。

for(auto it = hotelOnDate.begin(); it != hotelOnDate.end(); it++){
        std::cout<<AvailableRooms[it->second]<<std::endl;
    }

AvailableRooms [“Sheridan”]虽然给出了正确的输出10。 我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

我在代码中尝试了同样的事情,似乎对我有用。

#include <iostream>
#include <string>
#include <unordered_map>
#include <map>

int main ()
{
  std::map<std::string,std::string> mymap = {
                { "Mars", "g"},
                { "Saturn", "h"},
                { "Jupiter", "i" } };

 std::unordered_map<std::string,std::string> imap = {{"g","1"},{"h","2"}}; 
 for (auto it = mymap.begin(); it != mymap.end(); it++) {
    std::cout << it->first << ": " <<imap[ it->second ] << std::endl;
  }
 }
  return 0;
}