Redo (or do for the first time) Programming Project 12 from Chapter 11, except use the STL set template class instead of your own set class. Use the generic set_intersection function to compute the intersection of Q and D.
Here is an example of set_intersection to intersect set A with B and store the result in C, where all sets are sets of strings:
#include
#include
#include
. . .
set
// Note space between » in line below
insert_iterator
set_intersection(A.begin(), A.end(),
B.begin() ,B.end() ,
clter);
// set C now contains the intersection of A and B
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.