一个关于vector比较的例子~
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
void main()
{
vector<string>StrArr;
StrArr.push_back("xyz");
StrArr.push_back("ok");
StrArr.push_back("wocow3");
if(find(StrArr.begin(),StrArr.end(),string("ok")) != StrArr.end())
cout<<"finded"<<endl;
else
cout<<"not find"<<endl;
}
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
void main()
{
vector<string>StrArr;
StrArr.push_back("xyz");
StrArr.push_back("ok");
StrArr.push_back("wocow3");
if(find(StrArr.begin(),StrArr.end(),string("ok")) != StrArr.end())
cout<<"finded"<<endl;
else
cout<<"not find"<<endl;
}