STL list有find函数吗
时间: 2024-02-04 12:02:31 浏览: 95
C++STL中algorithm里find()函数
是的,STL的list容器确实有find函数。它可以用于在list中查找特定的元素。要使用该函数,首先需要包含<algorithm>头文件。然后,可以使用list的成员函数`std::list::find`来查找元素。例如,以下是一个使用find函数查找list中特定元素的示例代码:
```cpp
#include <iostream>
#include <list>
#include <algorithm>
int main() {
std::list<int> myList = {1, 2, 3, 4, 5};
auto it = std::find(myList.begin(), myList.end(), 3);
if (it != myList.end()) {
std::cout << "Element found: " << *it << std::endl;
} else {
std::cout << "Element not found" << std::endl;
}
return 0;
}
```
在上述代码中,我们使用了`std::find`函数来查找值为3的元素。如果找到了该元素,我们将打印出"Element found: 3";否则,将打印出"Element not found"。
阅读全文