min_element (STL/CLR)

在指定范围中查找最小元素的第一个匹配项,其中排序条件可通过二元谓词指定。

template<class _FwdIt> inline
    _FwdIt min_element(_FwdIt _First, _FwdIt _Last);
template<class _FwdIt, class _Pr> inline
    _FwdIt min_element(_FwdIt _First, _FwdIt _Last, _Pr _Pred);

备注

此函数行为与 STL min_element函数相同。 有关详细信息,请参阅min_element

要求

标头: <cliext/algorithm>

命名空间: cliext

请参见

参考

algorithm (STL/CLR)