//测试程序,输入一些数字,插入到一个向量中,如果重复输入则丢弃,最后保证向量中的数字是不重复的
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
void main()
{
vector<int> v;
int x;
while(1)
{
cin >> x;
if(x == 0)
{
break;
}
if(find(v.begin(),v.end(),x) == v.end())
{
v.push_back(x);
}
}
system("pause");
for(vector<int>::iterator c=v.begin(); c != v.end(); ++c)
{
cout << *c << " "<<endl;
}
}
find函数查重_自我回顾
最新推荐文章于 2022-12-02 17:40:20 发布