我正在研究 C++ 中的 A* 寻路算法。我有下面的简单代码,现在我需要找到 F 最低的对象。我知道如何通过迭代向量并手动比较它来做到这一点,但我认为可能还有其他更简单的方法来请求更少的代码。感谢您的回答
struct Node
{
int f;
};
void func()
{
std::vector<Node> nodes;
//fill nodes with some objects
//now find Node object with smallest F
}