bool operator()(struct Node * a,struct Node * b)是什么意思

时间:2019-07-02 10:00:45

标签: c++

我试图了解一个问题,该问题使用c ++中的优先级队列通过compare实现最小堆。我无法理解“ bool operator()(struct Node * a,struct Node * b)的语法含义。 “

    bool operator()(struct Node* a, struct Node* b) 
    { 
        return a->data > b->data; 
    } 
}; 

0 个答案:

没有答案