gpt4 book ai didi

c++ - 如何在 C++ 中的 vector 中获取第一个非零值的索引

转载 作者:行者123 更新时间:2023-11-30 00:47:44 25 4
gpt4 key购买 nike

执行此操作的最佳方法是什么。

例如。我有

Vector<int> temp = {0,0,1,0,2}

我想获取临时文件中第一个非零值的索引。所以在这种情况下,我想要答案 2。

我已经在这样做了,正在寻找更好的方法..

 int index = -1;
for(int round=0; round < temp.size(); round++)
{
if(temp[round] > 0)
{
index = round;
break;
}
}

谢谢,贡詹

最佳答案

您可以使用:

distance( begin(temp), find_if( begin(temp), end(temp), [](auto x) { return x != 0; }));

如果找不到项目,这将返回数组的大小。你需要 #include <algorithm>和 C++14 编译模式。在 C++11 中,您必须替换 autoint或您的容器包含的任何类型。


Here是一个具有可重复使用的 lambda 的版本,可能更容易阅读。需要 C++14。

关于c++ - 如何在 C++ 中的 vector<int> 中获取第一个非零值的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34058648/

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