是否有一个C ++函数可以找到多个向量之间的公共元素?向量元素是非整数(在我的情况下,元素是QPair类型)。
理想情况下,该函数将一组向量作为参数(要比较的向量数可以变化),并返回向量的公共值。我确保每个向量中都没有重复项,但是有可能没有共同的元素。
示例:
vec 1 [a,b] vec 2 [c,d,a,e,h] vec 3 [i,j,a]
要返回的常用值:
a
答案 0 :(得分:5)
正如Richard在评论中提到的那样,使用std::set_intersection()
可以轻松完成交集。前提条件是已排序的容器。
因此,可以从数学意义上理解set_intersection()
中的“集合” –它不限于std::set
。也可以使用排序后的std::vector
。
要对std::vector
进行排序,可以使用std::sort()
。在这种情况下,前提条件是元素的可能顺序,即为元素类型定义了operator<
。
QPair
定义了operator<
,如果first
和second
的类型也可以使用,则可以使用。
由于OP并未提到QPair
是哪种类型,我为示例std::string
选择了double
和isectQPair.cc
:
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <QtCore>
int main()
{
// prepare sample data
typedef QPair<std::string, double> Pair;
Pair
a("Hello", 1.23),
b("World", 2.34),
c("Stack", 3.45),
d("Overflow", 4.56),
e("C++11", 5.67),
f("C++14", 6.78),
g("C++17", 7.89),
h("C++20", 8.90),
i("gin hill", 10.1),
j("scheff", 0.0);
std::vector<Pair> vec1({ a, b });
std::vector<Pair> vec2({ c, d, a, e, h });
std::vector<Pair> vec3({ i, j, a });
// sort vectors
std::sort(vec1.begin(), vec1.end());
std::sort(vec2.begin(), vec2.end());
std::sort(vec3.begin(), vec3.end());
// intersect vectors
std::vector<Pair> isect12;
std::set_intersection(
vec1.begin(), vec1.end(), vec2.begin(), vec2.end(),
std::back_inserter(isect12));
std::vector<Pair> isect123;
std::set_intersection(
isect12.begin(), isect12.end(), vec3.begin(), vec3.end(),
std::back_inserter(isect123));
// report
const size_t n = isect123.size();
std::cout << "Intersection contains " << n << " elements"
<< (n ? ':' : '.') << '\n';
for (size_t i = 0; i < n; ++i) {
const Pair &entry = isect123[i];
std::cout << (i + 1) << ".: '" << entry.first
<< "', " << entry.second << '\n';
}
// done
return 0;
}
isectQPair.pro
:
SOURCES = isectQPair.cc
Qt = core
已在Windows 10的cygwin上进行了编译和测试:
$ qmake-qt5 isectQPair.pro
$ make
$ ./isectQPair
Intersection contains 1 elements:
1.: 'Hello', 1.23
$
Live Demo on ideone ({QPair
替换为std::pair
)
有关交集的另一个不错的Q / A可以在这里找到:SO: how to find the intersection of two std::set in C++?。
答案 1 :(得分:1)
您可以将它们放入哈希表并算出。一旦您再次找到它们,请撞计数器。如果特定项目的计数器与向量数相同,那么您将得到一个交集。无需对向量进行预排序,定义弱或字符串排序等。
沿线:
#include <iostream>
#include <vector>
#include <list>
#include <unordered_map>
using Qpair = uint32_t; // should be std::pair<int, int> or similar
using Qpairs = std::vector<Qpair>;
int intersections(const std::list<Qpairs>& allpairs) {
std::unordered_map<Qpair, int> m; // element vs counter
auto count = allpairs.size(); // number of vectors to scan
for(const auto& pairs: allpairs) { // loop over all vectors
for (const auto& p : pairs) { // loop over elements in particular vector
m[p] += 1; // and count them
}
}
int total_count = 0; // how many common elements are here
for (const auto& e : m) {
if (e.second == count) {
++total_count;
// you could add e.first to output vector as well
}
}
return total_count;
}
int main() {
Qpairs v1{ 4, 2, 6, 8, 9 };
Qpairs v2{ 1, 3, 8, 9, 4 };
Qpairs v3{ 2, 8, 9, 5, 0 };
std::list<Qpairs> l{ v1, v2, v3 };
auto q = intersections(l);
std::cout << q << '\n';
return 0;
}