I have the following C++ code with C++ STL vector,
#include <iostream>
#include <vector>
using namespace std;
int main ()
{
vector <int> v;
for (int i=0; i<15; i++)
v.push_back (i);
cout << v[10] << endl;
return 0;
}
It usually prints the element held in the tenth index.
The result is 10. But I have attempted the same thing using the C++ STL set.
#include <iostream>
#include <set>
using namespace std;
int main ()
{
set <int> myset;
for (int i=0; i<15; i++)
myset.insert (i);
cout << myset[10] << endl;
return 0;
}
It reports a compilation fault with the following messages: (
So, my question is, is there a method to print any element of STL sets in C++, similarly to STL vectors?
If so, how?
Meanwhile, we can use iterators, but as far as I know, it can work with the entire set.:)