accessing elements of set in cpp code example
Example: elements of set c++
//Method 1:
set<int>:: iterator it;
for( it = s.begin(); it != s.end(); ++it){
int ans = *it;
cout << ans << endl;
}
//Method 2:
for( auto& it : s) {
cout << it << " ";
}