洛谷P1177 【模板】快速排序

https://www.luogu.org/problem/P1177

#include<bits/stdc++.h>
using namespace std;
int n;
multiset<int>s;
multiset<int>::iterator it;
int main() {
    cin>>n;
    for(int i=0; i<n; i++) {
        int b;
        cin>>b;
        s.insert(b);
    }
//    for(it=s.begin(); it!=s.end(); it++)
//        cout<<*it<<" ";
//    return 0;
//}

    while(!s.empty()) {
    cout<<*s.begin()<<" ";           
    s.erase(s.begin());
}
}

 

上一篇:如何在Java中获得动态的RadioButton工具提示?


下一篇:c# – 具有自定义控件属性值的WPF自定义控件的工具提示