Is it possible to get a single element of a set in C STL

0 votes

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.:)

Aug 26, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 21 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP