vector容器的find函数
时间: 2023-10-11 16:05:55 浏览: 89
c++部分头文件的成员函数
可以用来做什么?可以举个例子吗?
回答:vector容器的find函数可以在容器中查找指定元素,并返回该元素的迭代器。比如下面的代码可以在一个vector容器中查找值为3的元素,并返回该元素的迭代器:
```
std::vector<int> myVec = {1, 2, 3, 4, 5};
auto it = std::find(myVec.begin(), myVec.end(), 3);
if (it != myVec.end()) {
std::cout << "Found element: " << *it << std::endl;
}
```
该代码输出为"Found element: 3"。
阅读全文