【发布时间】:2020-08-11 10:37:51
【问题描述】:
在 c++ 中是否有更快的方法来实现以下功能,以便我可以超越 python 的实现?
- 获取两个 map/unordered_map 键的交集
- 对于这些相交的键,计算它们各自 set/unordered_set 的元素之间的成对差异 一些可能有用的信息:
- hash_DICT1 有大约 O(10000) 个键,每个集合中大约有 O(10) 个元素。
- hash_DICT2 有大约 O(1000) 个键,每个集合中大约有 O(1) 个元素。
例如:
map <int,set<int>> hash_DICT1;
hash_DICT1[1] = {1,2,3};
hash_DICT1[2] = {4,5,6};
map <int,set<int>> hash_DICT2;
hash_DICT2[1] = {11,12,13};
hash_DICT2[3] = {4,5,6};
vector<int> output_vector
= GetPairDiff(hash_DICT1, hash_DICT2)
= [11-1,12-1,13-1,
11-2,12-2,13-2,
11-3,12-3,13-3] // only hashkey=1 is intersect, so only compute pairwise difference of the respective set elements.
= [10, 11, 12,
9, 10, 11,
8, 9, 10] // Note that i do want to keep duplicates, if any. Order does not matter.
GetPairDiff 函数。
vector<int> GetPairDiff(
unordered_map <int, set<int>> &hash_DICT1,
unordered_map <int, set<int>> &hash_DICT2) {
// Init
vector<int> output_vector;
int curr_key;
set<int> curr_set1, curr_set2;
// Get intersection
for (const auto &KEY_SET:hash_DICT2) {
curr_key = KEY_SET.first;
// Find pairwise difference
if (hash_DICT1.count(curr_key) > 0){
curr_set1 = hash_DICT1[curr_key];
curr_set2 = hash_DICT2[curr_key];
for (auto it1=curr_set1.begin(); it1 != curr_set1.end(); ++it1) {
for (auto it2=curr_set2.begin(); it2 != curr_set2.end(); ++it2) {
output_vector.push_back(*it2 - *it1);
}
}
}
}
}
主运行
int main (int argc, char ** argv) {
// Using unordered_map
unordered_map <int,set<int>> hash_DICT_1;
hash_DICT_1[1] = {1,2,3};
hash_DICT_1[2] = {4,5,6};
unordered <int,set<int>> hash_DICT_2;
hash_DICT_2[1] = {11,12,13};
hash_DICT_2[3] = {4,5,6};
GetPairDiff(hash_DICT_1, hash_DICT_1);
}
这样编译
g++ -o ./CompareRunTime.out -Ofast -Wall -Wextra -std=c++11
欢迎使用其他数据结构,例如map 或unordered_set。
但是我确实尝试了所有 4 种排列,发现 GetPairDiff 给出的排列速度最快,但远不及 python 的实现:
hash_DICT1 = { 1 : {1,2,3}, 2 : {4,5,6} }
hash_DICT2 = { 1 : {11,12,13}, 3 : {4,5,6} }
def GetPairDiff(hash_DICT1, hash_DICT2):
vector = []
for element in hash_DICT1.keys() & hash_DICT2.keys():
vector.extend(
[db_t-qry_t
for qry_t in hash_DICT2[element]
for db_t in hash_DICT1[element] ])
return vector
output_vector = GetPairDiff(hash_DICT1, hash_DICT2)
性能对比:
python : 0.00824 s
c++ : 0.04286 s
用c++实现大约是耗时的5倍!!!
【问题讨论】:
-
@TedLyngmo 感谢您的评论,我已相应更新。我可以知道你到底在哪里使用
const&。另外,我如何用find替换count的用法? -
当然,我做了一个答案来显示它。
标签: python c++ dictionary set intersection