题解 | #迭代器遍历set#

迭代器遍历set

https://www.nowcoder.com/practice/7e57c0f7af86429db20c70053f23ea96

#include<bits/stdc++.h>
using namespace std;
int main(){
    set<int> s;
    // write your code here......
    for (int i=0;i<5;i++){
        int it;
        cin >> it;
        s.insert(it);
    }
    set<int>::iterator iter;
    for(iter = s.begin(); iter != s.end(); ++iter){
        cout << *iter << " ";
    }
    return 0;
}
全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
去B座二楼砸水泥地:不过也可以理解,这种应该没参加过秋招
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务