How to create a std::set with custom comparator in C++?

前端 未结 2 1516
野的像风
野的像风 2021-01-15 20:15

How do I create a set of pairs, the elements of which (the pairs) are sorted with a custom bool function? I write

set ,compare> my         


        
2条回答
  •  既然无缘
    2021-01-15 21:11

    Method 1: use functor

    Write a class that overloads the operator()so it can be called like a function:

    struct compare {
        bool operator() (const pair &lhs, const pair &rhs) const{
             return (lhs.second-lhs.first > rhs.second-rhs.first);
        }
    };
    

    Then, you can use the class name as the type parameter

    set, compare> myset;
    

    Method 2: use function pointer

    Assuming compare is the function you want to use:

    set, bool(*)(const pair &lhs, 
                               const pair &rhs)
       > myset(&compare);
    

提交回复
热议问题