This C++ Program demonstrates implementation of Set_Symmetric_difference in STL.
Here is source code of the C++ Program to demonstrate Set_Symmetric_difference 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_Symmetric_difference in Stl
*/
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main ()
{
int f[] = {5,10,15,20,25};
int s[] = {50,40,30,20,10};
vector<int> v(10);
vector<int>::iterator it;
sort (f, f + 5);
sort (s, s + 5);
it = set_symmetric_difference(f, f + 5, s, s + 5, v.begin());
v.resize(it - v.begin());
cout<<"The symmetric difference has "<< (v.size())<< " elements: "<<endl;
for (it = v.begin(); it != v.end(); ++it)
cout<< *it<<" ";
cout <<endl;
return 0;
}
$ g++ set_Symmetric_difference.cpp $ a.out The symmetric difference has 6 elements: 5 15 25 30 40 50 ------------------ (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.
Next Steps:
- Get Free Certificate of Merit in Data Structure I
- Participate in Data Structure I Certification Contest
- Become a Top Ranker in Data Structure I
- Take Data Structure I Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Apply for Data Structure Internship
- Buy Data Structure Books
- Buy Computer Science Books
- Practice Design & Analysis of Algorithms MCQ
- Practice Programming MCQs