gpt4 book ai didi

c++ - 如何使用 std::find 从 vector< pair < string, string >> 类型的第一个元素中查找字符串?

转载 作者:行者123 更新时间:2023-11-30 04:47:05 27 4
gpt4 key购买 nike

我尝试了以下代码:

    auto it = find(v.begin(),v.end(), name, [](const pair<string, string> &a,const string b)
{
return a.first == b;
}); // name contains the string to find.

但这给了我编译错误。帮我找出我的错误。

最佳答案

您尝试调用的重载不存在。你想使用 find_if :

auto it = std::find_if(v.begin(),v.end(), [&](const pair<string, string> &a)
{
return a.first == name;
}); // name contains the string to find.

关于c++ - 如何使用 std::find 从 vector< pair < string, string >> 类型的第一个元素中查找字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56382980/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com