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,926 questions

51,859 answers

573 users

How to find element in deque using search criterion in C++

1 Answer

0 votes
#include <iostream>
#include <algorithm>
#include <deque>

int main()
{
	std::deque<int> dq = { 3, 1, 21, 12, 13, 6, 8, 7 };

	int x = 4;
	int y = 13;
	auto pos = find_if(dq.cbegin(), dq.cend(), [=](int i) { return i > x && i < y;});

	std::cout << "The first element that >4 and <13 is: " << *pos << std::endl;

	return 0;
}

/*
run:

The first element that >4 and <13 is: 12

*/

 



answered Jan 1, 2018 by avibootz

Related questions

1 answer 196 views
1 answer 259 views
1 answer 159 views
1 answer 247 views
1 answer 159 views
...