有两个数组,一个用于ID,一个用于分数,我想将两个数组存储到std::map
,并使用std::partial_sort
找到五个最高分,然后打印它们的ID
那么,有没有可能使用std::partial_sort
上的std::map
?
答案 0 :(得分:3)
没有
您无法重新排列std::map
中的项目。它似乎总是按升序键排序。
答案 1 :(得分:2)
在std::map
中,排序仅适用于键。你可以使用vector:
//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);
//....
}
以下是Demo