是的,C++中的contains
函数可以用于数组。contains
函数用于检查一个数组是否包含某个特定的元素。例如:
#include <iostream>
#include <algorithm>
int main() {
int arr[] = {1, 2, 3, 4, 5};
int target = 3;
if (std::find(std::begin(arr), std::end(arr), target) != std::end(arr)) {
std::cout << "Array contains the element " << target << std::endl;
} else {
std::cout << "Array does not contain the element " << target << std::endl;
}
return 0;
}
上述代码中,我们使用std::find
算法来检查数组arr
是否包含元素target
。如果包含,则输出Array contains the element 3
,否则输出Array does not contain the element 3
。