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

51,811 answers

573 users

How to print merge of two int arrays using set_union in C++

1 Answer

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

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

#define SIZE 6

int main()
{
	int arr1[SIZE] = { 1, 3, 6, 7, 9, 12 };
	int arr2[SIZE] = { 1, 2, 3, 4, 5, 6 };

	std::ostream_iterator< int > output(cout, " ");

	set_union(arr1, arr1 + SIZE, arr2, arr2 + SIZE, std::ostream_iterator<int>(cout, " "));

	cout << endl;

	return 0;
}

/*
run:

1 2 3 4 5 6 7 9 12

*/

 



answered Mar 3, 2018 by avibootz

Related questions

1 answer 163 views
1 answer 150 views
150 views asked Feb 27, 2018 by avibootz
1 answer 257 views
1 answer 208 views
208 views asked Mar 10, 2021 by avibootz
...