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