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 180 views
2 answers 258 views
1 answer 285 views
1 answer 196 views
1 answer 178 views
1 answer 193 views
1 answer 154 views
...