write a C++ function to compute the following (Set Theory)       a.   std::vector intersection(std::vector& a, std::vector& b)       b.   std::vector union(std::vector& a, std::vector& b)       c.  std::vector abs_complement(std::vector& u, std::vector& a, std::vector& b)        d. std::vector relative_complement(std::vector& u, std::vector& a, std::vector& b)  //a\b       e. std::vector delta_diff(std::vector& u, std::vector& a, std::vector& b)  //a = { x, y, z ... } void print(std::vector& v, std::string& n) { std::vector::iterator itr = std::begin(v); for (; itr != std::end(v); itr++) {    std::cout<<(*itr)< u = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 };   std::vector a = {1, 2, 3, 4, 5 };  std::vector b = {4, 5, 6, 7, 8};   std::vector ri =  intersection(std::vector& a, std::vector& b);  print(ri);  std::vector ru = union(std::vector& a, std::vector& b);   print(ri); std::vector ra = abs_complement(std::vector& u, std::vector& a, std::vector& b);   print(ri);  std::vector rr = relative_complement(std::vector& u, std::vector& a, std::vector& b); \\a\b  print(ri);  std::vector rd = delta_diff(std::vector& u, std::vector& a, std::vector& b); return 0; }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 17PE
icon
Related questions
Question

write a C++ function to compute the following (Set Theory)

      a.   std::vector<int> intersection(std::vector<int>& a, std::vector<int>& b)

      b.   std::vector<int> union(std::vector<int>& a, std::vector<int>& b)

      c.  std::vector<int> abs_complement(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b) 

      d. std::vector<int> relative_complement(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b)  //a\b

      e. std::vector<int> delta_diff(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b) 

//a = { x, y, z ... }

void print(std::vector<int>& v, std::string& n) {

std::vector<int>::iterator itr = std::begin(v);

for (; itr != std::end(v); itr++) {

   std::cout<<(*itr)<<std::endl;

}

}

 

int main(int avgc, char** avgs) 

{

 std::vector<int> u = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14 };

  std::vector<int> a = {1, 2, 3, 4, 5 };

 std::vector<int> b = {4, 5, 6, 7, 8};

  std::vector<int> ri =  intersection(std::vector<int>& a, std::vector<int>& b);

 print(ri);

 std::vector<int> ru = union(std::vector<int>& a, std::vector<int>& b); 

 print(ri);

std::vector<int> ra = abs_complement(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b);

  print(ri);

 std::vector<int> rr = relative_complement(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b); \\a\b

 print(ri);

 std::vector<int> rd = delta_diff(std::vector<int>& u, std::vector<int>& a, std::vector<int>& b);

return 0;

}

  

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning