有两个数组,一个用于 ids,一个用于分数,我想将这两个数组存储到 a std::map
,并使用std::partial_sort
找到五个最高分数,然后打印它们的 id 那么,有没有可能使用std::partial_sort
on std::map
?
问问题
554 次
2 回答
3
不。
您不能重新排列 a 中的项目std::map
。它似乎总是按升序排列。
于 2017-07-19T04:44:06.437 回答
3
在std::map
中,排序仅适用于键。您可以使用矢量来做到这一点:
//For getting Highest first
bool comp(const pair<int, int> &a, const pair<int, int> &b){
return a.second > b.second;
}
int main() {
typedef map<int, int> Map;
Map m = {{21, 55}, {11, 44}, {33, 11}, {10, 5}, {12, 5}, {7, 8}};
vector<pair<int, int>> v{m.begin(), m.end()};
std::partial_sort(v.begin(), v.begin()+NumOfHighestScorers, v.end(), comp);
//....
}
这是演示
于 2017-07-19T07:03:03.413 回答