美文网首页
2022-08-03 算法学习——集合的遍历,同时推广到stl容

2022-08-03 算法学习——集合的遍历,同时推广到stl容

作者: Lovevivi | 来源:发表于2024-02-24 21:25 被阅读0次

    include<bits/stdc++.h>

    using namespace std;
    set <int> st;
    int n;
    int main() {
    scanf("%d",&n);
    for(int i=0;i<n;i++) {
    int tmp;
    scanf("%d",&tmp);
    st.insert(tmp);
    }
    //集合的遍历
    for(auto it = st.begin();it!=st.end();it++) {
    cout<<it<<endl;
    }
    //返回极差
    set < int > ::iterator it= --st.end();
    cout<<
    it - *st.begin();
    return 0;
    }

    相关文章

      网友评论

          本文标题:2022-08-03 算法学习——集合的遍历,同时推广到stl容

          本文链接:https://www.haomeiwen.com/subject/kzkswrtx.html