Does the C++ STL set data structure have a set difference operator?
|
Yes there is, it is in
In the end, the set |
|||||||||||||||
|
|
Yes, there is a set_difference function in the algorithms header. Edits: FYI, the set data structure is able to efficiently use that algorithm, as stated in its documentation. The algorithm also works not just on sets but on any pair of iterators over sorted collections. As others have mentioned, this is an external algorithm, not a method. Presumably that's fine for your application. |
||||
|
Not an "operator" in the language sense, but there is the set_difference algorithm in the standard library: http://www.cplusplus.com/reference/algorithm/set_difference.html Of course, the other basic set operations are present too - (union etc), as suggested by the "See also" section at the end of the linked article. |
|||
|
|
|
The chosen answer is correct, but has some syntax errors. Instead of
use
Instead of
use
|
|||||
|
|
Not as a method but there's the external algorithm function set_difference
|
|||
|
|
|
Apparently, it does. |
|||
|
|
|
can we just use
|
|||
|