使用find()函数:可以使用STL中的find()函数来查找元素在vector中的位置。例如,要查找值为x的元素在vector中的位置,可以使用以下代码:auto it = find(vec.begin(), vec.end(), x); if (it != vec.end()) { int index = distance(vec.begin(), it); cout << "Element found at position: " << ...
begin(), it) << std::endl; } else { std::cout << "Element not found in the vector" << std::endl; } return 0; } 复制代码 在上面的示例中,我们首先定义一个整数类型的vector,并且定义要查找的元素为3。然后使用std::find函数在vector中查找这个元素,如果找到了就输出该元素在vector中的位置,...
数据集没有特殊性的情况下,暴力查找直接用std::find好了。当然,手写SIMD估计会比std::find快出来一...
先看下自己用循环写一个遍历查找元素的代码 #include <iostream> #include <vector> using namespace ...
begin(), it) << std::endl; } else { std::cout << "Element not found in the vector" << std::endl; } return 0; } 复制代码 在上面的示例中,我们首先定义一个整数类型的vector,并且定义要查找的元素为3。然后使用std::find函数在vector中查找这个元素,如果找到了就输出该元素在vector中的位置,...
一般情况,使用封装的肯定更好,除了语义更明确这个好处,还在于调用封装的接口,随着内部实现的升级和优化...
intmain(){intasz=10000000;inttestn=2000;intrtestn=20;vector<int>a(asz,0);for(intk=1;k<...
std::vector<int> v{0, 1, 2, 3, 4}; // 用find,如果以后不需要修改,可以定义为const,...