大家好,又见面了,我是你们的朋友全栈君。
在之前的学习中,我们在使用map的时候,都是利用key找value。
之前我们使用的函数是find,若存在,返回查找到的指向第一个key的迭代器,若不存在,返回尾后迭代器。
反过头来想一想,我们可不可以根据value找key呢?
答案是肯定的。
我们使用find_if +lambda可以实现。返回值和find一致。
实例1:
std::string s = "c";
auto find_item = std::find_if(t.begin(), t.end(),
[s](const std::map<int, std::string>::value_type item)
{
return item.second == s;
});
int n = 0;
if (find_item!= t.end())
{
n = find_item->first;
}
根据value为c,找对应的key!!!
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/163557.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...