我可以使用std :: partial_sort对std :: map进行排序吗?

时间:2017-07-19 04:39:48

标签: c++ stl stdmap partial-sort

有两个数组,一个用于ID,一个用于分数,我想将两个数组存储到std::map,并使用std::partial_sort找到五个最高分,然后打印它们的ID 那么,有没有可能使用std::partial_sort上的std::map

2 个答案:

答案 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