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

51,826 answers

573 users

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 187 views
1 answer 188 views
1 answer 169 views
1 answer 172 views
1 answer 168 views
1 answer 158 views
1 answer 187 views
...