题解 | #明明的随机数#

明明的随机数

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 ; 
}
全部评论

相关推荐

挣K存W养DOG:他真的很中意你,为什么不回他
点赞 评论 收藏
分享
头像
11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务