最佳答案
我一直试图在 C + + 中找到两个 std: : set 之间的交集,但总是出现错误。
我为此创建了一个小样本测试
#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
int main() {
set<int> s1;
set<int> s2;
s1.insert(1);
s1.insert(2);
s1.insert(3);
s1.insert(4);
s2.insert(1);
s2.insert(6);
s2.insert(3);
s2.insert(0);
set_intersection(s1.begin(),s1.end(),s2.begin(),s2.end());
return 0;
}
The latter program does not generate any output, but I expect to have a new set (let's call it s3
) with the following values:
s3 = [ 1 , 3 ]
相反,我得到了一个错误:
test.cpp: In function ‘int main()’:
test.cpp:19: error: no matching function for call to ‘set_intersection(std::_Rb_tree_const_iterator<int>, std::_Rb_tree_const_iterator<int>, std::_Rb_tree_const_iterator<int>, std::_Rb_tree_const_iterator<int>)’
我对这个错误的理解是,在 set_intersection
中没有接受 Rb_tree_const_iterator<int>
作为参数的定义。
此外,我假设 std::set.begin()
方法返回这种类型的对象,
Is there a better way to find the intersection of two std::set
in C++? Preferably a built-in function?