コードでは次のようになります。
比較アルゴリズム
class PathComp{
public:
virtual bool betterThan(const PathInfo& path1, const PathInfo& path2) const{
//returns true if path1 is shorther than path2
{
};
再定義された演算子 () を持つクラス
class QueueComp{
private:
PathComp* comp;
public:
QueueComp(PathComp* pc);
bool operator () (const pair<PathInfo, string>& item1, const pair<PathInfo, string> item2);
};
QueueComp::QueueComp(PathComp* pc):comp(pc){}
bool QueueComp::operator () (const pair<PathInfo, string>& item1, const pair<PathInfo, string>& item2){
return comp->betterThan(item1.first, item2.first);
}
プライオリティ キューを使用する関数
list<string> Graph::shortestPath(const string& from, const string& to, PathComp* pc) const{
const QueueComp comp(pc);
std::priority_queue<pair<PathInfo, string>, set<pair<PathInfo, string> >, comp> q;
}
コンパイラにエラー メッセージが表示されます。'comp' は定数式に表示できません。テンプレート引数 3 が無効です。前の宣言の型が無効です。トークン
どこに問題があるか知っている人はいますか?助けてくれてありがとう。