2013-01-07 58 views
0

我有問題在以下代碼中將3個元素(s start,stop)鏈接在一起。我如何鏈接下面的數據

map <int, int> (start, stop) startomap; 
map <unsigned, <int, int> > (n1, startomap); 
map <string, unsigned> (s, n1) m3; 

從立方米我能夠鏈接字符串並且n1, 如何建立一個地圖<串,>(S,startomap)M4; 並同時確保s - > n-> start->之間的1對1關係到 非常感謝!

+0

你想看看http://stackoverflow.com/questions/606004/c-multi-dimensional-data-handling接近上述問題以不同的方式 – abnvp

回答

1

你想要這個嗎?

map <int, int> startomap; 
map<unsigned, map<int, int> > n1startomap; 
map <string, map<unsigned, map<int, int> > > sn1startmap; 
+0

的感謝!我認爲將放入結構/類中可能會更好。然後使用map user1830108

相關問題