how can we get elements from set in sorted order
How can we get elements from set in sorted order
set by default store the elements in sorted order
nothing extra has to done for sorting in set
#include <bits/stdc++.h>
using namespace std;
int main() {
set<int>s;
int n;cin>>n;
int x;
for(int i=0;i<n;i++){
cin>>x;
s.insert(x);
}
for(auto it:s){
cout<<it<<" ";
}
}
if you want to ask something about this feel free to ask
i hope this helps
if yes show your response with and don’t forgot to mark doubt as resolved
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.