我正在尝试将对存储在优先级队列中,并且我正在使用一个比较函数来比较每对的第二个值。
#include<iostream>
#include<queue>
#include<utility>
using namespace std;
class CompareDist
{
public:
bool operator()(pair<int,int> n1,pair<int,int> n2) {
return n1.second>n2.second;
}
};
int main()
{
priority_queue<pair<int,int>,CompareDist> pq;
}
当我编译这个我得到一个错误
error: no type named ‘value_type’ in ‘class CompareDist’
可能是什么原因。我是 STL 的新手。