标签: opencv
我需要得到两个向量的交集:
vector<int> a{1 2 3 4 5 6 7 8}; vector<int> b{2 4 6 8 10 12};
结果应为:
vector<int> c{2 4 6 8}
我该怎么做?