如何检查 C++ 向量中元素是否存在
本文演示了多种方法来检查一个 C++ 向量中是否存在元素。
C++ std::find()
检查向量中是否存在元素
find
方法是 STL 算法库的一部分,它可以检查给定的元素是否存在于特定的范围内。该函数搜索一个等于用户传递的第三个参数的因子。相应的返回值是遍历到找到的第一个元素,如果没有找到,则返回范围的 end
。
注意,我们使用*
运算符来访问返回的字符串值,并在 if
语句中做一个比较条件,如下例所示。
#include <iostream>
#include <vector>
#include <algorithm>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::find;
int main() {
string element_to_check1 = "nibble";
string element_to_check2 = "nimble";
vector<string> data_types = {"bit", "nibble",
"byte", "char",
"int", "long",
"long long", "float",
"double", "long double"};
if (*find(data_types.begin(), data_types.end(), element_to_check1) == element_to_check1) {
printf("%s is present in the vector\n", element_to_check1.c_str());
} else {
printf("%s is not present in the vector\n", element_to_check1.c_str());
}
if (*find(data_types.begin(), data_types.end(), element_to_check2) == element_to_check2) {
printf("%s is present in the vector\n", element_to_check2.c_str());
} else {
printf("%s is not present in the vector\n", element_to_check2.c_str());
}
return EXIT_SUCCESS;
}
输出:
nibble is present in the vector
nimble is not present in the vector
C++ 基于范围的 for
循环来检查元素是否存在于向量中
基于范围的 for
循环可以作为另一种解决方案来检查给定元素是否存在于向量中。这种方法比较直接,因为它遍历向量;每次遍历都检查是否与给定的字符串相等。如果一个元素匹配,就会打印一个确认字符串,然后使用 break
语句停止循环。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;
int main() {
string element_to_check = "nibble";
vector<string> data_types = {"bit", "nibble",
"byte", "char",
"int", "long",
"long long", "float",
"double", "long double"};
for (const auto &item : data_types) {
if (item == element_to_check) {
printf("%s is present in the vector\n", element_to_check.c_str());
break;
}
}
return EXIT_SUCCESS;
}
输出:
nibble is present in the vector
C++ any_of()
检查向量中是否存在元素
<algorithm>
头文件的另一个有用的方法是 any_of
算法,它与 find
方法类似。any_of
方法检查作为第三个参数指定的单元谓词是否对给定范围内的至少一个元素返回 true
。在这个例子中,我们使用一个 lambda 表达式来构建一个用于比较向量元素的单元谓词。
#include <iostream>
#include <vector>
#include <algorithm>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::any_of;
int main() {
string element_to_check = "nibble";
vector<string> data_types = {"bit", "nibble",
"byte", "char",
"int", "long",
"long long", "float",
"double", "long double"};
if (any_of(data_types.begin(), data_types.end(), [&](const string& elem) { return elem == element_to_check; })) {
printf("%s is present in the vector\n", element_to_check.c_str());
}
return EXIT_SUCCESS;
}
输出:
nibble is present in the vector
相关文章
在 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 数组