C에서 std::sort를 사용하여 배열 정렬
int v[2000]으로 선언된 배열을 정렬하려면; std::sort 함수를 사용하여 배열의 시작 및 끝 반복자를 제공하기만 하면 됩니다. C 0x/11에서는 배열에 대해 오버로드되는 std::begin 및 std::end 함수를 사용하여 이를 달성할 수 있습니다.
<code class="cpp">#include <algorithm> int main(){ int v[2000]; std::sort(std::begin(v), std::end(v)); }</code>
C 0x에 액세스할 수 없는 경우 다음을 수행할 수 있습니다. 다음 기능을 직접 구현해 보세요.
<code class="cpp">template<class Cont> typename Cont::iterator begin(Cont& c){ return c.begin(); } template<class Cont> typename Cont::iterator end(Cont& c){ return c.end(); } // overloads for C style arrays template<class T, std::size_t N> T* begin(T (&arr)[N]){ return &arr[0]; } template<class T, std::size_t N> T* end(T (&arr)[N]){ return arr + N; }</code>
위 내용은 C에서 std::sort를 사용하여 배열을 정렬하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!