有谁知道如何创建两个多图关联容器。第一个将有重复的键。然后我想发布算法来搜索所有重复项并将它们移动到第二个容器中,并可能删除第一个容器中的原始重复项。
IE :
typedef multimap< int, int, less< int > > mma;
mma contain1;
typedef multimap< int, less< int > > ne;
ne contain2;
cointain1.insert(mma::value_tpe(5, 2);
cointain1.insert(mma::value_tpe(5, 3);
cointain1.insert(mma::value_tpe(5, 3);
cointain1.insert(mma::value_tpe(6, 2);
任何帮助将非常感激。