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 part of deque into a list 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[] = "acf";
	int len = strlen(s);

	deque<char> dq = { 'b', 'd', 'e', 'g' };

	list<char> lst(7);

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

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

	cout << endl;

	return 0;
}

/*
run:

a b c d f

*/

 



answered Feb 28, 2018 by avibootz

Related questions

1 answer 169 views
1 answer 189 views
1 answer 175 views
1 answer 172 views
1 answer 168 views
1 answer 182 views
1 answer 130 views
130 views asked Jan 22, 2018 by avibootz
...