欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vector的find用法

程序员文章站 2022-05-11 12:45:24
...

.
find函数存在于算法中
其头文件为#include<algorithm>
.
代码示例:

#include<vector>
#include<algorithm>
#include<iostream>
using namespace std;
int main()
{
      vector<int>L;
      L.push back(1);
      L.push back(2);
      L.push back(3);
      vector<int>::iterator it=find(L.begin(),L.end(),3);
      if(it==L.end())
            cout<<"NO"<<endl;
       else 
             cout<<"YES"<<endl;
   }
相关标签: 学习总结