码迷,mamicode.com
首页 > 编程语言 > 详细

c++ find函数使用,如结合vector

时间:2019-11-22 13:22:17      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:==   ace   space   ++   ios   str   pac   clu   tor   

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
 
int main()
{
    vector<int> v;
    v.push_back(1);
    v.push_back(2);
    v.push_back(3);    
    
    if( find(v.begin(), v.end(), 1) == v.end())
    {
        cout << "no1" << endl;
    }
    
    if( find(v.begin(), v.end(), 12) == v.end())
    {
        cout << "no2" << endl;
    }
    
    return 0;
}

c++ find函数使用,如结合vector

标签:==   ace   space   ++   ios   str   pac   clu   tor   

原文地址:https://www.cnblogs.com/babystep/p/11910849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!