我有std::multimap<string, MyObject*> dataMap;
,其中键为MyObject.name
,所有MyObject都存储在std::vector<MyObject>
中。
填写地图后,我需要打印由同一个键分组的dataMap
内容,在dataMap.count(MyObject.name)
的帮助下我首先需要相同键的数量,然后使用此键的所有值
我在考虑使用两个for loops
,其中第一个循环遍历&#34;密钥组名称&#34;并计算属于该组的所有密钥,另一个for loop
遍历特定组中的所有密钥并打印MyObject.information
for(//iterate through group key names){
//print number of key occurences
for(//iterate through a certain group{
//print MyObject.information for all the keys in a group
}
}
问题是,我真的不知道如何实现这个,或者更确切地说我将如何使用迭代器。有什么想法吗?
编辑:从我创建的链接
for(std::multimap<string, MyObject*>::const_iterator itUnq = dataMap.cbegin();
itUnq != dataMap.cend(); itUnq = dataMap.upper_bound(itUnq->first)){
std::cout << dataMap.count(itUnq->second->name)
<< std::endl;
std::pair <std::multimap<string, MyObject*>::const_iterator,
std::multimap<string, MyObject*>::const_iterator> groupRange;
groupRange = dataMap.equal_range(itUnq->second->code);
//iterate through keys inside the group
for(std::multimap<string, MyObject*>::const_iterator itGroup = groupRange.first;
itGroup != groupRange.second; ++itGroup){
std::cout << itGroup->second->information
}
评论
答案 0 :(得分:6)
根据我对您的问题的理解,您可以使用std::multimap::equal_range实现它。
有点像这样:
#include <map>
#include <ctime>
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
struct MyObject
{
std::string name;
int information;
MyObject(const std::string& name, int information)
: name(name), information(information) {}
};
int main()
{
std::srand(std::time(0));
std::vector<MyObject> dataVec;
std::multimap<std::string, MyObject*> dataMap;
// Give each object a random letter
// between A-J as a name and some data
for(auto i = 0; i < 10; ++i)
dataVec.emplace_back(std::string(1, 'A' + std::rand() % 10), i);
// Fill dataMap from dataVec
for(auto&& data: dataVec)
dataMap.emplace(data.name, &data);
// Select the correct type for calling the equal_range function
decltype(dataMap.equal_range("")) range;
// iterate through multimap's elements (by key)
for(auto i = dataMap.begin(); i != dataMap.end(); i = range.second)
{
// Get the range of the current key
range = dataMap.equal_range(i->first);
// Now print out that whole range
for(auto d = range.first; d != range.second; ++d)
std::cout << d->first << ": " << d->second->information << '\n';
}
}
<强> Run It Here 强>
如果这不是你想要的,也许它仍会给你如何解决你的具体问题的想法。