How to search a vector for specific value in C++

1 Answer

0 votes
#include <iostream>
#include <vector>

using std::vector;
using std::cout;
using std::endl;

int main()
{
	vector<int> vec = { 1, 3, 8, 23, 88, 12, 99, 7 };

	vector<int>::const_iterator pos;

	pos = find(vec.cbegin(), vec.cend(), 88);

	if (pos != vec.end()) {
		cout << "found : " << *pos << endl;
	}
	else {
		cout << "not found" << endl;
	}
}


/*
run:

found : 88

*/

 



answered Jan 21, 2018 by avibootz
...