使用STL在列表<mystruct>中查找成员的最小值

时间:2015-04-29 09:27:22

标签: c++ c++11 stl stl-algorithm

我有MyStruct对象列表。

struct Task {
    std::function<void()> _fn = nullptr;
    std::chrono::system_clock::time_point _execTime;
};

如何使用STL算法在列表中找到_execTime的最小值?我可以通过迭代找到,但是有更优雅的方法来做到这一点吗? 如下所示:

std::chrono::system_clock::time_point nearestExecTime = std::min(auto t = tasks.begin(), auto p = tasks.end(), [t,p]() {return t.execTime < p.exeTime;});

1 个答案:

答案 0 :(得分:1)

使用std::min_element

std::min_element(tasks.begin(), tasks.end(),
[](const Task& t, const Task& p) { return t._execTime < p._execTime; });