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

51,831 answers

573 users

How to insert elements in deque in specific range using C++

1 Answer

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

using std::deque;
using std::cout;
using std::endl;

template <typename T>
inline void insert(T& dq, int first, int last)
{
	for (int i = first; i <= last; i++) {
		dq.insert(dq.end(), i);
	}
}
template <typename T>
inline void print(const T& dq)
{
	for (auto element : dq) {
		cout << element << ' ';
	}
	cout << endl;
}

int main()
{
	deque<int> dq;

	insert(dq, 3, 8);

	print(dq);

	return 0;
}


/*
run:

3 4 5 6 7 8

*/

 



answered Jan 29, 2018 by avibootz

Related questions

1 answer 162 views
2 answers 236 views
1 answer 247 views
1 answer 181 views
1 answer 163 views
1 answer 174 views
1 answer 145 views
...