明明的随机数(C++)

明明的随机数

http://www.nowcoder.com/questionTerminal/3245215fffb84b7b81285493eae92ff0

思路:

排序、去重,很容易联想到容器set的性质。

代码:

#include <iostream>
#include <set>

int main()
{
    int n;
    while (std::cin >> n)
    {
        std::set<int> stat;
        int tmp;
        for (int i = 0; i < n; ++i)
        {
            std::cin >> tmp;
            stat.insert(tmp);
        }
        for (auto ele : stat)
        {
            std::cout << ele << std::endl;
        }
    }

    return 0;
}
全部评论

相关推荐

11-29 11:21
门头沟学院 Java
总包48.5w,意想不到的价格
想开了的垂耳兔很喜欢拱白菜:转人工
点赞 评论 收藏
分享
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
评论
1
2
分享
牛客网
牛客企业服务