vote up 1 vote down star

Dears,

Is there a way finding largest container inside a container using STL? ATM, I have this rather naïve way of doing it:


int main()
{
        std::vector<std::vector<int> > v;

        ...

        unsigned int h = 0;

        for (std::vector<std::vector<int> >::iterator i = v.begin(); i != v.end(); ++i) {
                if (*i.size() > h) {
                        h = *i.size();
                }
        }
}

flag

Largest container or size of the largest? – Mykola Golubyev May 20 at 13:42

3 Answers

vote up 16 vote down check

You can always use std::max_element and pass a custom comparator that compares the size of two std::vector<int> as arguments.

link|flag
+1 STL algorithms FTW! – ceretullis May 20 at 16:14
vote up 0 vote down

Have you considered sorting the container using the STL sort methods?

link|flag
1  
why would that be a good solution? – Neil Butterworth May 20 at 13:45
vote up 0 vote down

You could use quick select, and then select the value on the extreme end:

Quick Select

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.