如何确定 C 数组中是否存在元素
在 Java 中,使用“等于”在数组中搜索特定元素非常简单方法。然而,在 C 中,“null”的概念有所不同,这就需要另一种方法。
C 解决方案: std::find
C 提供了 std ::find 算法,在一系列元素中搜索指定的目标值。返回的迭代器要么指向目标(如果存在),要么指向结束迭代器(如果不存在)。
代码示例:
#include <iterator> #include <algorithm> int main() { Foo array[10]; // Initialize the array here Foo *foo = std::find(std::begin(array), std::end(array), someObject); // Check if the element was found if (foo != std::end(array)) { std::cout << "Found at position " << std::distance(array, foo) << std::endl; } else { std::cout << "Not found" << std::endl; } return 0; }
此实现有效地搜索数组中是否存在指定元素并相应地输出结果。
以上是如何在 C 数组中查找元素?的详细内容。更多信息请关注PHP中文网其他相关文章!