partial_sort (STL Samples)
사용 하는 방법을 보여 줍니다 있는 partial_sort Visual C++에서 표준 템플릿 라이브러리 (STL) 함수입니다.
template<class RandomAccessIterator> inline
void partial_sort(
RandomAccessIterator First,
RandomAccessIterator Middle,
RandomAccessIterator Last
)
설명
[!참고]
프로토타입에 클래스/매개 변수 이름은 헤더 파일에서 버전이 일치 하지 않습니다.일부 가독성을 높이기 위해 수정 되었습니다.
partial_sort 알고리즘을 정렬 최소값 n 요소를 위치 n = 중간 - First 시퀀스의 [First, Last).나머지 요소 범위 내에 결국 [중간...Last)는 정의 되지 않은 순서로.Nonpredicate 버전 partial_sort 를 사용 하 여 연산자 < 비교에 대 한.
예제
// partial_sort.cpp
// compile with: /EHsc
// Illustrates how to use the partial_sort function.
//
// Functions:
// partial_sort : Sort the smallest N elements in a sequence.
// disable warning C4786: symbol greater than 255 character,
// okay to ignore
#pragma warning(disable: 4786)
#include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
using namespace std ;
int main()
{
const int VECTOR_SIZE = 8 ;
// Define a template class vector of int
typedef vector<int> IntVector ;
//Define an iterator for template class vector of strings
typedef IntVector::iterator IntVectorIt ;
IntVector Numbers(VECTOR_SIZE) ;
IntVectorIt start, end, it ;
// Initialize vector Numbers
Numbers[0] = 4 ;
Numbers[1] = 10;
Numbers[2] = 70 ;
Numbers[3] = 30 ;
Numbers[4] = 10;
Numbers[5] = 69 ;
Numbers[6] = 96 ;
Numbers[7] = 7;
start = Numbers.begin() ; // location of first
// element of Numbers
end = Numbers.end() ; // one past the location
// last element of Numbers
cout << "Before calling partial_sort\n" << endl ;
// print content of Numbers
cout << "Numbers { " ;
for(it = start; it != end; it++)
cout << *it << " " ;
cout << " }\n" << endl ;
// sort the smallest 4 elements in the sequence
partial_sort(start, start+4, end) ;
cout << "After calling partial_sort\n" << endl ;
cout << "Numbers { " ;
for(it = start; it != end; it++)
cout << *it << " " ;
cout << " }\n" << endl ;
}
Output
Before calling partial_sort
Numbers { 4 10 70 30 10 69 96 7 }
After calling partial_sort
Numbers { 4 7 10 10 70 69 96 30 }
요구 사항
헤더: <algorithm>