📅  最后修改于: 2022-03-11 14:44:58.429000             🧑  作者: Mango
// The equivalent to python dictionaries are maps in c++
map mymap; // Enter required types and name
mymap[1] = 'a';
mymap[4] = 'b';
cout << "my map is -" << mymap[1] << " " <