C/C++
setcpp.txt
Associated article: C++ Set-Theoretic Operations on Virtual Containers
Tags: C/C++ Design
Published source code accompanying the article by Gregory Begelman, Lev Finkelstein, and Evgeniy Gabrilovich in which they examine the C++ Standard Template Library's (STL) set-theoretic operations. Also see SETCPP.ZIP.
C++ Set-Theoretic Operations on Virtual Containers
by Gregory Begelman, Lev Finkelstein, Evgeniy Gabrilovich
Listing One
void temp_intersection() {
vector<int> vec1, vec2, temp_result;
... // prepare input sequences in 'vec1' and 'vec2'
set_intersection(vec1.begin(), vec1....


