在C++中,可以使用std::map
来创建二维map
。
首先,你需要包含<map>
头文件:
#include <map>
然后,你可以声明一个map
对象,其中一个维度用作键,另一个维度用作值。例如,如果你想创建一个将学生姓名映射到他们的分数的二维map
,可以这样做:
std::map<std::string, std::map<std::string, int>> studentScores;
接下来,你可以使用[]
运算符将键值对插入到map
中:
studentScores["Alice"]["Math"] = 90;
studentScores["Alice"]["English"] = 85;
studentScores["Bob"]["Math"] = 95;
studentScores["Bob"]["English"] = 80;
你也可以使用find
函数来查找特定的键值对:
auto it = studentScores.find("Alice");
if (it != studentScores.end()) {// 找到了// 访问 Alice 的数学成绩int mathScore = it->second["Math"];std::cout << "Alice的数学成绩是:" << mathScore << std::endl;
} else {// 没找到std::cout << "没有找到Alice的成绩" << std::endl;
}
这是使用二维map
的一些基本操作。你可以根据自己的需求进行进一步的操作和探索。