我有一个包含键值对的多重地图,如下所示:
multiMap [-3] = {'h'}
multiMap [-2] = {'d','j','m'}
multiMap [-1] = {'b','f','i','p'}
我希望打印输出,以使第一行具有键“ -3”的所有值,第二行具有键“ -2”的所有值,最后一行具有与之对应的所有值键“ -1”。
我使用以下代码,但是它将每个元素打印在新行中
int main()
{
multimap<int,char> multiMap;
multimap.insert({-3,'h'});
//And so on for all the key-value pairs
//To print the multimap:
for(auto i = multiMap.begin(); i != multiMap.end(); i++)
cout << i->second << "\n";
return 0;
}
答案 0 :(得分:1)
要在一行中打印特定键的所有值,我们使用multimap :: lower_bound()和multimap :: upper_bound()函数。
#include <iostream>
#include <map>
using namespace std;
int main()
{
multimap<int,char> myMap;
myMap.insert({-1,'b'});
myMap.insert({-1,'f'});
myMap.insert({-1,'i'});
myMap.insert({-1,'p'});
myMap.insert({-2,'d'});
myMap.insert({-2,'j'});
myMap.insert({-2,'m'});
myMap.insert({-3,'h'});
auto i = myMap.begin();
for(; i != myMap.end();)
{
auto itr = myMap.lower_bound(i->first);
for(; itr != myMap.upper_bound(i->first); itr++)
cout << itr->second << " ";
i = itr; //This skips i through all the values for the key: "i->first" and so it won't print the above loop multiple times (equal to the number of values for the corresponding key).
cout << "\n";
}
return 0;
}