题解 | #输入n个整数,输出其中最小的k个#

输入n个整数,输出其中最小的k个

https://www.nowcoder.com/practice/69ef2267aafd4d52b250a272fd27052c

#include<iostream>
#include <set>
using namespace std;
int main()
{
    int n, k;
    while(cin >> n >> k)
    {
        multiset<int> num;
        int count = 0;
        int temp = 0;
        for(int i = 0; i < n; i++)
        {   
            cin >> temp;
            num.insert(temp);
        }
        for(auto x : num)
        {   
            cout << x << " ";
            count++;
            if(count == k) break;
        }
    }
    return 0;
}

全部评论

相关推荐

投递华为等公司10个岗位
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务