vote up 0 vote down star
1

I want to find the first item in a sorted vector that has a field less than some value x.
I need to supply a compare function that compares 'x' with the internal value in MyClass but I can't work out the function declaration.
Can't I simply overload '<' but how do I do this when the args are '&MyClass' and 'float' ?

 float x;
 std::vector< MyClass >::iterator last = std::upper_bound(myClass.begin(),myClass.end(),x);
flag

2 Answers

vote up 3 vote down check

What function did you pass to the sort algorithm? You should be able to use the same one for upper_bound and lower_bound.

The easiest way to make the comparison work is to create a dummy object with the key field set to your search value. Then the comparison will always be between like objects.

Edit: If for some reason you can't obtain a dummy object with the proper comparison value, then you can create a comparison functor. The functor can provide three overloads for operator() :

struct MyClassLessThan
{
    bool operator() (const & MyClass left, const & MyClass right)
    {
        return left.key < right.key;
    }
    bool operator() (const & MyClass left, float right)
    {
        return left.key < right;
    }
    bool operator() (float left, const & MyClass right)
    {
        return left < right.key;
    }
};

As you can see, that's the long way to go about it.

link|flag
That was the problem, the sort function takes two const refs to MyClass objects. The search function must take a MyClass and a float. Same problem for using bind2nd() the – mgb May 15 at 16:32
operator() to compare things - now why didn't I think of that !!! The more I use STL the more I love python. thank you – mgb May 15 at 17:26
vote up 0 vote down

I think what you need is std::bind2nd(std::less<MyClass>(), x). But, of course, the operator< must be defined for MyClass.

Edit: oh and I think you will need a constructor for MyClass that accepts only a float so that it can be implicitly converted. However, there might be a better way to do this.

link|flag

Your Answer

Get an OpenID
or

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