我在排序自定义类指针列表时遇到问题。我需要排序的类是事件。这些被分配一个随机时间,我需要按正确的顺序进行。
#include <list>
Class Event{
public:
float time; // the value which I need to sort them by
int type; // to indicate which event i'm dealing with
Event(float tempTime, int tempType)
{
time = tempTime;
type = tempType;
}
int main(){
std::list<Event*> EventList;
list<Event*>::iterator it;
.........
如果你能帮助我解决这个问题,我将不胜感激!我已经被困在这几个小时了。
谢谢!
答案 0 :(得分:12)
由于列表包含指针而不是对象,因此您必须提供自定义比较器来比较它们指向的对象。由于您使用的是list
,因此您必须使用自己的sort
方法:通用std::sort
算法仅适用于随机访问序列。
EventList.sort([](Event * lhs, Event * rhs) {return lhs->time < rhs->time;});
或者,如果你被困在过去而且不能使用lambdas:
struct CompareEventTime {
bool operator()(Event * lhs, Event * rhs) {return lhs->time < rhs->time;}
};
EventList.sort(CompareEventTime());
如果列表包含对象(可能应该这样),那么提供比较运算符可能是有意义的:
bool operator<(Event const & lhs, Event const & rhs) {return lhs.time < rhs.time;}
std::list<Event> EventList;
//...
EventList.sort();
答案 1 :(得分:0)
您应该使用std::sort
。您可以将自定义比较器函数作为第三个参数传递给std::sort
函数,也可以为类创建<
运算符重载,std::sort
将自然生效。