Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sorting a Vector of Custom Objects by overloading <

I am trying to sort a vector of nodes. I followed the advice from this thread and overloaded my
struct's < operator. However I am not getting a sorted list after sort is called.

struct node
{

    int frequency ;
    char data;

    bool operator < (const node& n1) const
    {
        return (frequency < n1.frequency);
    }
};

I call sort by the following:

vector<node*> test
//fill test with nodes
sort(test.begin(),test.end());

Output:

Presort data is: 1,1,2,3,3,1,2,1,1
Postsort data is: 3,2,1,1,1,1,2,1,3
like image 560
Matt Avatar asked May 28 '26 07:05

Matt


1 Answers

Since you are sorting a vector of pointers, but the operator applies to a struct, C++ ignores your operator < overload.

You can supply a custom comparer that calls your operator <, like this

std::sort(test.begin(), test.end(), [](const node* pa, const node* pb) {
    return (*pb) < (*pa);
});

or code the comparison straight into the lambda, and drop the unused overload of <, like this:

std::sort(test.begin(), test.end(), [](const node* pa, const node* pb) {
    return pb->frequency < pa->frequency;
});
like image 175
Sergey Kalinichenko Avatar answered May 30 '26 20:05

Sergey Kalinichenko



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!