是的,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
。