Rogue Wave banner
Previous fileTop of documentContentsIndexNext file

set_intersection


Algorithm

Summary

A basic set operation for constructing a sorted intersection.

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

None

Synopsis

#include <algorithm>
template <class InputIterator1, class InputIterator2, 
          class OutputIterator>
  OutputIterator  
    set_intersection (InputIterator1 first1, 
                      InputIterator1 last1,
                      InputIterator2 first2, 
                      InputIterator last2,
                      OutputIterator result);
template <class InputIterator1, class InputIterator2, 
          class OutputIterator, class Compare>
  OutputIterator  
    set_intersection (InputIterator1 first1, 
                      InputIterator1 last1,
                      InputIterator2 first2, 
                      InputIterator2 last2, 
                      OutputIterator result, Compare comp);

Description

The set_intersection algorithm constructs a sorted intersection of elements from the two ranges. It returns the end of the constructed range. When it finds an element present in both ranges, set_intersection always copies the element from the first range into result. This means that the result of set_intersection is guaranteed to be stable. The result of set_intersection is undefined if the result range overlaps with either of the original ranges.

set_intersection assumes that the ranges are sorted using the default comparison operator less than (<), unless an alternative comparison operator (comp) is provided.

Complexity

At most ((last1 - first1) + (last2 - first2)) * 2 -1 comparisons are performed.

Example

Program Output

Warnings

If your compiler does not support default template parameters, then you always need to supply the Compare template argument and the Allocator template argument. For instance, you need to write:

set<int, less<int> allocator<int> >

instead of:

set<int>

If your compiler does not support namespaces, then you do not need the using declaration for std.

See Also

includes, set, set_union, set_difference, set_symmetric_difference



Previous fileTop of documentContentsIndexNext file
©Copyright 1998, Rogue Wave Software, Inc.
Send mail to report errors or comment on the documentation.
OEM Release, June 1998