我无法弄清楚我在这里做错了什么。
我想对列表进行排序并具有比较功能来对其进行排序。
找到了一个代码示例,正是我的问题得到了解决,但它对我不起作用。
我总是收到此错误:
错误:ISO C++ 禁止声明没有类型的“单元”
细胞不是我的类型吗?
AStarPlanner.h
class AStarPlanner {
public:
AStarPlanner();
virtual ~AStarPlanner();
protected:
bool compare(const Cell& first, const Cell& second);
struct Cell {
int x_;
int y_;
int f_; // f = g + h
int g_; // g = cost so far
int h_; // h = predicted extra cost
Cell(int x, int y, int g, int h) : x_(x), y_(y), g_(g), h_(h) {
f_ = g_ + h_;
}
};
};
AStarPlanner.cpp
bool AStarPlanner::compare(const Cell& first, const Cell& second)
{
if (first.f_ < second.f_)
return true;
else
return false;
}