我想问是否可以提供一个示例,说明如何使用 set_difference 找到地图的集合和键之间的差异
我知道另一个问题std::set_difference 是否可以比较集合和映射键?但它指向另一个没有明确例子的问题。我需要一个不使用 boost 库的解决方案
#include <algorithm>
#include <set>
#include <iterator>
// ...
std::set<int> s1, s2;
// Fill in s1 and s2 with values
std::set<int> result;
std::set_difference(s1.begin(), s1.end(), s2.begin(), s2.end(),
std::inserter(result, result.end()));