在 C++ 中的向量中查找元素索引
本文将介绍几种在 C++ 中如何在向量中查找元素索引的方法。
在 C++ 中使用自定义函数查找向量中的元素索引
我们可以使用自定义线性搜索功能在 vector
中找到给定元素的位置。请注意,这是解决此问题的一种非常无效的方法。在下面的示例代码中,我们声明一个整数的向量,并寻找一个任意的元素位置,如果调用成功,则将其输出。
#include <iostream>
#include <string>
#include <vector>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
int findIndex(const vector<int> &arr, int item) {
for (auto i = 0; i < arr.size(); ++i) {
if (arr[i] == item)
return i;
}
return -1;
}
int main(int argc, char *argv[]) {
vector<int> arr = {1,2,3,4,5,6,7,8,9,10};
auto pos = findIndex(arr, 32);
pos != -1 ?
cout << "Found the element " << 32 << " at position " << pos << endl :
cout << "Could not found the element " << 32 << " in vector" << endl;
exit(EXIT_SUCCESS);
}
输出:
Could not found the element 32 in vector
在 C++ 中使用 std::find
算法查找向量中的元素索引
另外,我们可以使用 STL 库中的 std::find
算法。此函数将迭代器返回到满足条件的第一个元素。另一方面,如果未找到任何元素,则算法将返回范围的最后一个元素。请注意,返回的迭代器应按 begin
迭代器递减以计算位置。
#include <iostream>
#include <string>
#include <vector>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
int findIndex2(const vector<int> &arr, int item) {
auto ret = std::find(arr.begin(), arr.end(), item);
if (ret != arr.end())
return ret - arr.begin();
return -1;
}
int main(int argc, char *argv[]) {
vector<int> arr = {1,2,3,4,5,6,7,8,9,10};
auto pos2 = findIndex2(arr, 10);
pos2 != -1 ?
cout << "Found the element " << 10 << " at position " << pos2 << endl :
cout << "Could not found the element " << 10 << " in vector" << endl;
exit(EXIT_SUCCESS);
}
输出:
Found the element 10 at position 9
在 C++ 中使用 std::find_if
算法查找向量中的元素索引
查找元素索引的另一种方法是调用 std::find_if
算法。它与 std::find
相似,除了第三个参数可以是用于评估每个迭代元素的谓词表达式。如果表达式返回 true,则算法将返回。注意,我们将 lambda 表达式作为第三个参数传递,该表达式检查元素是否等于 10
。
#include <iostream>
#include <string>
#include <vector>
using std::cout;
using std::cerr;
using std::endl;
using std::string;
using std::vector;
int main(int argc, char *argv[]) {
vector<int> arr = {1,2,3,4,5,6,7,8,9,10};
auto ret = std::find_if(arr.begin(), arr.end(),
[](int x) { return x == 10; });
if (ret != arr.end())
cout << "Found the element " << 10 << " at position "
<< ret - arr.begin() << endl;
exit(EXIT_SUCCESS);
}
输出:
Found the element 10 at position 9
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组