我有两个multimaps.i想要创建一个新的multimap,它在给定的两个multimaps中具有公共键值对:
例如:
#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
multimap<std::string, std::string> m;
multimap<std::string, std::string> n;
m.insert(multimap<string,string>::value_type("1-2","1-1"));
m.insert(multimap<string,string>::value_type("1-2","1-2"));
m.insert(multimap<string,string>::value_type("1-2","1-3"));
m.insert(multimap<string,string>::value_type("1-2","1-4"));
m.insert(multimap<string,string>::value_type("1-3","2-1"));
m.insert(multimap<string,string>::value_type("1-3","21-1"));
m.insert(multimap<string,string>::value_type("1-3","21-2"));
n.insert(multimap<string,string>::value_type("1-2","1-1"));
n.insert(multimap<string,string>::value_type("1-2","1-2"));
n.insert(multimap<string,string>::value_type("1-2","1-5"));
n.insert(multimap<string,string>::value_type("1-2","1-7"));
n.insert(multimap<string,string>::value_type("1-3","2-1"));
n.insert(multimap<string,string>::value_type("1-3","21-4"));
n.insert(multimap<string,string>::value_type("1-3","21-2"));
cout<<"multimap of m"<<endl;
cout<<"--------------"<<endl;
for(multimap<string,string>::iterator i=m.begin();i!=m.end();i++)
cout <<i->first<<" "<<i->second<<endl;
cout<<"multimap of n"<<endl;
cout<<"--------------"<<endl;
for(multimap<string,string>::iterator i=n.begin();i!=n.end();i++)
cout <<i->first<<" "<<i->second<<endl;
}
这导致:
multimap of m
--------------
1-2 1-1
1-2 1-2
1-2 1-3
1-2 1-4
1-3 2-1
1-3 21-1
1-3 21-2
multimap of n
--------------
1-2 1-1
1-2 1-2
1-2 1-5
1-2 1-7
1-3 2-1
1-3 21-4
1-3 21-2
我想创建一个新的multimap:它具有以下元素:
1-2 1-1
1-2 1-2
1-3 2-1
1-3 21-2
修改
还有一种方法可以从两个地图中删除公共元素(对)。
答案 0 :(得分:5)
使用std::set_intersection
<algorithm>
功能模板
std::multimap<T1, T2> newMap;
std::set_intersection(map1.begin(), map1.end(),
map2.begin(), map2.end(),
std::inserter(newMap, newMap.begin());
修改强> 是的,显然这不适用于多图,就像它对地图一样。我建议如下:
std::multimap<T1, T2> newMap;
std::vector<std::multimap<T1, T2>::value_type> v1(map1.begin(), map1.end());
std::sort(v1.begin(), v1.end());
std::vector<std::multimap<T1, T2>::value_type> v2(map2.begin(), map2.end());
std::sort(v2.begin(), v2.end());
std::set_intersection(v1.begin(), v1.end(),
v2.begin(), v2.end(),
std::inserter(newMap, newMap.begin());
答案 1 :(得分:1)
作为Armen's (which is excellent)的替代解决方案,这里有一种同时复制和排序的方法:
typedef std::multimap<std::string, std::string> map_type;
map_type m, n, result;
m.insert(std::make_pair("1-2", "1-1"));
// --------8<--------
n.insert(std::make_pair("1-3", "21-2"));
// --------8<--------
std::set<map_type::value_type> s1(m.begin(), m.end());
std::set<map_type::value_type> s2(n.begin(), n.end());
std::set_intersection(s1.begin(), s1.end(),
s2.begin(), s2.end(),
std::inserter(result, result.end()));
intersection
============
1-2 1-1
1-2 1-2
1-3 2-1
1-3 21-2
获取仅在m
中的元素:
result.clear();
std::set_difference(s1.begin(), s1.end(),
s2.begin(), s2.end(),
std::inserter(result, result.end()));
仅限于n
:
result.clear();
std::set_difference(s2.begin(), s2.end(),
s1.begin(), s1.end(),
std::inserter(result, result.end()));
由于您在执行set_difference()
时已复制m
和n
(s1
和s2
),因此{{1}这些并插入其中而不是clear()
。
答案 2 :(得分:0)
为了好玩,这里是直接算法,它将常用元素移动到新的多图中,更改原始地图。您将在外环上识别标准的“集合交集”算法,用于排序范围(关于first
);由于我们不能假设有关映射值的任何内容,因此内部循环(关于second
)是对映射值的线性搜索,以找到等于。
template <typename T>
T move_common(T & a, T & b)
{
typename T::const_iterator it1 = a.cbegin(), iend = a.cend(), jt1 = b.cbegin(), jend = b.cend();
T result;
while (it1 != iend && jt1 != jend)
{
if (it1->first < jt1->first)
{
++it1;
}
else if (jt1->first < it1->first)
{
++jt1;
}
else
{
typename T::const_iterator it2 = it1;
while (it2 != iend && it2->first == it1->first)
{
typename T::const_iterator jt2 = jt1;
while (jt2 != jend && jt2->first == jt1->first)
{
if (jt2->second == it2->second)
{
result.insert(*it2);
if (it2 == it1) { a.erase(it1++); it2 = it1; } else { a.erase(it2++); }
if (jt2 == jt1) { b.erase(jt1++); } else { b.erase(jt2); }
break;
}
else
{
++jt2;
if (jt2 == jend || jt2->first != jt1->first) { ++it2; break; }
}
}
}
it1 = it2;
}
}
return result;
}
结果:
common = [(1-2, 1-1), (1-2, 1-2), (1-3, 2-1), (1-3, 21-2)]
n after = [(1-2, 1-3), (1-2, 1-4), (1-3, 21-1)]
m after = [(1-2, 1-5), (1-2, 1-7), (1-3, 21-4)]