This C++ Program demonstrates implementation of Set_Intersection in STL.
Here is source code of the C++ Program to demonstrate Set_Intersection in STL. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.
/*
* C++ Program to Implement Set_Intersection in Stl
*/
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main ()
{
int first[] = {5,10,15,20,25};
int second[] = {50,40,30,20,10};
vector<int> v(10);
vector<int>::iterator it;
sort (first, first + 5);
sort (second, second + 5);
it = set_intersection (first, first + 5, second, second + 5, v.begin());
v.resize(it - v.begin());
cout << "The intersection has " << (v.size()) << " elements: "<<endl;
for (it = v.begin(); it != v.end(); ++it)
cout<< *it<<" ";
cout <<endl;
return 0;
}
$ g++ set_intersection.cpp $ a.out The intersection has 2 elements: 10 20 ------------------ (program exited with code: 0) Press return to continue
Sanfoundry Global Education & Learning Series – 1000 C++ Programs.
advertisement
advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.
If you find any mistake above, kindly email to [email protected]Related Posts:
- Practice Design & Analysis of Algorithms MCQ
- Practice Computer Science MCQs
- Check Programming Books
- Practice Programming MCQs
- Apply for Computer Science Internship