题解 | #牛的品种排序III#

牛的品种排序III

https://www.nowcoder.com/practice/f6ab3d7e20f54860886848f0a6374987

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param cows int整型vector 
     * @param k int整型 
     * @return int整型vector
     */
    vector<int> sortCowsIII(vector<int>& cows, int k) 
    {
        // write code here
        map<int,int> mp;
        for (auto it : cows)
        {
            mp[it]++;
        }
        vector<pair<int,int>> data(mp.begin(),mp.end());
        vector<int> result;
        for (auto it : data)
        {
            for (int i = 0;i < it.second;++i)
            {
                result.push_back(it.first);
            }
        }
        return result;
    }
};

全部评论

相关推荐

拒绝无效加班的小师弟很中意你:求职意向没有,年龄、课程冗余信息可以删掉,需要提升项目经历。排版需要修改。
点赞 评论 收藏
分享
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务