vector<multimap<string, int> > allCount;
我想从地图矢量中获取最后一对地图,但我不知道如何。
int x = 0;
for(iter = patternBase.begin(); iter != patternBase.end(); iter++) {
Tree t;
for(int j = 0; j < iter->second.size(); j++) {
for(int k = iter->second[j]->getPath().size() - 1; k >= 0 ; k--)
sets.push(iter->second[j]->getPath()[k]);
t.insertNode(sets, here I want to use last pair (value) of allCount[x] map);
cout << endl;
}
cout << endl;
x++;
}
答案 0 :(得分:1)
您需要创建如下的迭代器:
multimap<string, int>::iterator it = allCount[x].end();
然后递减它以使其指向最后一个元素:
it--;
最后:
t.insertNode(sets, it->second);