How to merge char array and a list into a deque in C++

1 Answer

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

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

int main()
{
	char s[] = "ace";
	int len = strlen(s);
	list<char> lst = { 'b', 'd', 'f', 'g' };

	deque<char> dq(7);

	merge(&s[0], &s[len], lst.begin(), lst.end(), dq.begin());

	copy(dq.cbegin(), dq.cend(), std::ostream_iterator<char>(cout, " "));

	cout << endl;

	return 0;
}

/*
run:

a b c d e f g

*/

 



answered Feb 28, 2018 by avibootz

Related questions

1 answer 219 views
1 answer 216 views
1 answer 206 views
1 answer 186 views
1 answer 188 views
1 answer 179 views
1 answer 198 views
...