nth_element (STL/CLR)

파티션을 정확 하 게 찾는 요소의 범위는 nth 요소 범위의 시퀀스의 앞쪽에 있는 모든 요소 보다 작거나 하 고 시퀀스에서 그 뒤에 나오는 모든 요소가 되도록 되어 보다 크거나.

template<class _RanIt> inline
    void nth_element(_RanIt _First, _RanIt _Nth, _RanIt _Last);
template<class _RanIt, class _Pr> inline
    void nth_element(_RanIt _First, _RanIt _Nth, _RanIt _Last,
        _Pr _Pred);

설명

이 함수는 STL 함수 동작 nth_element.자세한 내용은 nth_element를 참조하십시오.

요구 사항

헤더: < cliext/알고리즘 >

네임 스페이스: cliext

참고 항목

참조

algorithm (STL/CLR)