题解 | #明明的随机数#

明明的随机数

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

维护一个set,每次输入放入set里面,最后用 set::iterator 遍历一下set。

代码

#include <iostream> 
#include <cstdio>
#include <set> 
using namespace std ; 

set<int> rs ; 
int main(){
    int n ; 
    cin >> n ; 
    for(int i = 0 ; i<n ; i++ ) {
        int x ; 
        cin >> x ;
        rs.insert(x) ; 
    }
    set<int>::iterator it ; 
    for(it = rs.begin() ; it!=rs.end() ;it++ ){
        cout<<*it<<endl; 
    }
    
    
    return 0 ; 
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:52
点赞 评论 收藏
分享
安静的垂耳兔在泡澡:ks已经第八次投递了,它起码挂了还让你再投,不错了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务