私の問題は:
私は2つのクラスとメインのプログラムを持っています。
クラスのメンバー関数内でpriority_queueを宣言しました。
比較を定義する必要があり、使用する必要があるコードは次のとおりです。
// Determine priority (in the priority queue) bool operator < (const node & a, const node & b) { return a.getPriority() > b.getPriority(); }
質問:このコードをどこに挿入すればよいですか?誰かが私を助けてもらえますか?
ありがとう