vote up 1 vote down star

I have four std::vector containers that all might (or might not) contain elements. I want to determine which of them has the most elements and use it subsequently.

I tried to create a std::map with their respective sizes as keys and references to those containers as values. Then I applied std::max on the size() of each vector to figure out the maximum and accessed it through the std::map.

Obviously, this gets me into trouble once there is the same number of elements in at least two vectors.

Can anyone think of a elegant solution ?

flag

6 Answers

vote up 13 vote down check

You're severely overthinking this. You've only got four vectors. You can determine the largest vector using 3 comparisons. Just do that:

std::vector<blah>& max = vector1;
if (max.size() < vector2.size()) max = vector2;
if (max.size() < vector3.size()) max = vector3;
if (max.size() < vector4.size()) max = vector4;

EDIT:

Now with pointers!

EDIT (280Z28):

Now with references! :)

EDIT:

The version with references won't work. Pavel Minaev explains it nicely in the comments:

That's correct, the code use references. The first line, which declares max, doesn't cause a copy. However, all following lines do cause a copy, because when you write max = vectorN, if max is a reference, it doesn't cause the reference to refer to a different vector (a reference cannot be changed to refer to a different object once initialized). Instead, it is the same as max.operator=(vectorN), which simply causes vector1 to be cleared and replaced by elements contained in vectorN, copying them.

The pointer version is likely your best bet: it's quick, low-cost, and simple.

std::vector<blah> * max = &vector1;
if (max->size() < vector2.size()) max = &vector2;
if (max->size() < vector3.size()) max = &vector3;
if (max->size() < vector4.size()) max = &vector4;
link|flag
6  
I would use pointers though, to avoid the copying here. Better yet, a reference – but that entails doing all the above comparisons in the initialization. – Konrad Rudolph Nov 4 at 16:41
I agree with not over-thinking the problem, but your example might copy the contents of each of the four vectors into the max vector. Depending on how one wishes to use the vector, I'd recommend a pointer (or a const pointer) to avoid copying. – Commodore Jaeger Nov 4 at 16:42
1  
Thanks... yep I was waaaay overthinking it.. :-) – luuke Nov 4 at 17:02
2  
That's correct, the code use references. The first line, which declares max, doesn't cause a copy. However, all following lines do cause a copy, because when you write max = vectorN, if max is a reference, it doesn't cause the reference to refer to a different vector (a reference cannot be changed to refer to a different object once initialized). Instead, it is the same as max.operator=(vectorN), which simply causes vector1 to be cleared and replaced by elements contained in vectorN, copying them. – Pavel Minaev Nov 5 at 3:06
1  
That's why you should use a method... really. Early return saves the day here! – Matthieu M. Nov 5 at 7:30
show 4 more comments
vote up -1 vote down

You could use a std::multimap. That allows multiple entries with the same key.

link|flag
vote up 9 vote down

Here's one solution (aside from Pesto's far-too-straightforward approach) - I've avoided bind and C++0x lambdas for explanatory purposes, but you could use them to remove the need for a separate function. I'm also assuming that with two vectors with an equal number of elements, which one is picked is irrelevant.

template <typename T> bool size_less (const T* lhs, const T* rhs) {
    return lhs->size() < rhs ->size();
}

void foo () {
    vector<T>* vecs[] = {&vec1, &vec2, &vec3, &vec4};
    vector<T>& vec = std::min_element(vecs, vecs + 4, size_less<vector<T> >);
}
link|flag
Why not make 'vecs' also a std::vector, and use push_back to make it even more general? – pkit Nov 4 at 16:47
1  
@pkit: what for? – Konrad Rudolph Nov 4 at 16:53
@Konrad: So it can also be used with more (or less) than 4 vectors. – pkit Nov 4 at 16:55
1  
Yes, any container would work, but I picked an array because of the ease of initialization (thankfully C++0x will fix that). You could also just replace vecs + 4 with vecs + (sizeof(vecs) / sizeof(*vecs)) and extend the array to an arbitrary size. – coppro Nov 4 at 17:00
2  
@coppro: Instead of vecs + 4 you might want to use vecs + sizeof(vecs)/sizeof(vecs[0]). And I would make size_less a function object, because those inline better. – sbi Nov 4 at 17:02
show 1 more comment
vote up 0 vote down

This is a modified version of coppro's answer using a std::vector to reference any number of vectors for comparison.

template <typename T> bool size_less (const T* lhs, const T* rhs) {
    return lhs->size() < rhs ->size();
}

void foo () {
    // Define vector holding pointers to the original vectors
    typedef vector< vector<T>* > VectorPointers;

    // Fill the list
    VectorPointers vecs;
    vecs.push_back(&vec1);
    vecs.push_back(&vec2);
    vecs.push_back(&vec3);
    vecs.push_back(&vec4);        

    vector<T>& vec = std::min_element(
        vecs.begin(), 
        vecs.end(), 
        size_less<vector<T> >
    );
}
link|flag
2  
This buys you nothing over coppro's solution, except that it's less efficient (because it uses dynamic memory). – sbi Nov 4 at 17:00
vote up 0 vote down

I'm all for over-thinking stuff :)
For the general problem of finding the highest/lowest element in a group, I would use a priority_queue with a comparator:
(copying shamelessly from coppro, and modifying...)

template <typename T> bool size_less (const T* lhs, const T* rhs)
{
  return lhs->size() < rhs ->size();
}


vector* highest()
{
  priority_queue<vector<T>, size_less<T> > myQueue;
  ...
  ...
  return myQueue.top();
}
link|flag
vote up 1 vote down

Here is my very simple method. Only interest is that you just need basic c++ to understand it.

 vector<T>* v[] = {&v1, &v2, &v3, &v4}, *max=&v1;
 for(int i=1; i < 4; ++i)
     if (v[i]->size() > max->size()) max = v[i];
link|flag

Your Answer

Get an OpenID
or

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