Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

How to search a vector for specific value and get the index in C++

3 Answers

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 };

	auto pos = std::find(vec.begin(), vec.end(), 88);

	if (pos != vec.end()) {
		cout << "found in index: " << std::distance(vec.begin(), pos) << endl;
	}
	else {
		cout << "not found" << endl;
	}
}


/*
run:

found in index: 4

*/

 



answered Jan 21, 2018 by avibootz
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 };

	ptrdiff_t pos = find(vec.begin(), vec.end(), 12) - vec.begin();

	if (pos < vec.size()) {
		cout << "found in index: " << pos << endl;
	}
	else {
		cout << "not found" << endl;
	}
}


/*
run:

found in index: 5

*/

 



answered Jan 21, 2018 by avibootz
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 };

	ptrdiff_t pos = distance(vec.begin(), find(vec.begin(), vec.end(), 8));

	if (pos < vec.size()) {
		cout << "found in index: " << pos << endl;
	}
	else {
		cout << "not found" << endl;
	}
}


/*
run:

found in index: 2

*/

 



answered Jan 21, 2018 by avibootz
...