std:: stable_sort
|
헤더 파일에 정의됨
<algorithm>
|
||
|
template
<
class
RandomIt
>
void stable_sort ( RandomIt first, RandomIt last ) ; |
(1) | (C++26부터 constexpr) |
|
template
<
class
ExecutionPolicy,
class
RandomIt
>
void
stable_sort
(
ExecutionPolicy
&&
policy,
|
(2) | (C++17부터) |
|
template
<
class
RandomIt,
class
Compare
>
void stable_sort ( RandomIt first, RandomIt last, Compare comp ) ; |
(3) | (C++26부터 constexpr) |
|
template
<
class
ExecutionPolicy,
class
RandomIt,
class
Compare
>
void
stable_sort
(
ExecutionPolicy
&&
policy,
|
(4) | (C++17부터) |
범위 내의 요소들을 비내림차순으로 정렬합니다.
[
first
,
last
)
동등한 요소들의 순서는 보존됨이 보장됩니다.
|
std:: is_execution_policy_v < std:: decay_t < ExecutionPolicy >> 가 true 인 경우. |
(C++20 이전) |
|
std:: is_execution_policy_v < std:: remove_cvref_t < ExecutionPolicy >> 가 true 인 경우. |
(C++20 이후) |
다음 조건 중 하나라도 충족되면, 동작은 정의되지 않습니다:
|
(C++11 이전) |
|
(C++11 이후) |
목차 |
매개변수
| first, last | - | 정렬할 요소들의 범위 를 정의하는 반복자 쌍 |
| policy | - | 사용할 실행 정책 |
| comp | - |
비교 함수 객체(즉,
Compare
요구사항을 만족하는 객체)로 첫 번째 인수가 두 번째 인수보다
작은
경우(즉, 순서상
앞서는
경우)
true
를 반환함.
비교 함수의 시그니처는 다음과 동일해야 함: bool cmp ( const Type1 & a, const Type2 & b ) ;
시그니처에
const
&
가 필요하지는 않지만, 함수는 전달된 객체를 수정해서는 안 되며,
값 범주
에 관계없이 (가능한 const)
|
| 타입 요구사항 | ||
-
RandomIt
는
LegacyRandomAccessIterator
요구사항을 충족해야 함.
|
||
-
Compare
는
Compare
요구사항을 충족해야 함.
|
||
복잡도
주어진 N 을 last - first 로:
(N)) 비교를 수행합니다.
(N)) 회 적용됩니다.
예외
ExecutionPolicy
라는 템플릿 매개변수를 사용하는 오버로드는 다음과 같이 오류를 보고합니다:
-
알고리즘의 일부로 호출된 함수 실행 중 예외가 발생하고
ExecutionPolicy가 표준 정책 중 하나인 경우, std::terminate 가 호출됩니다. 다른ExecutionPolicy의 경우 동작은 구현에 따라 정의됩니다. - 알고리즘이 메모리 할당에 실패하는 경우, std::bad_alloc 이 throw됩니다.
가능한 구현
다음 구현도 참조하십시오: libstdc++ 와 libc++ .
참고 사항
이 함수는 정렬할 시퀀스와 동일한 크기의 임시 버퍼 할당을 시도합니다. 할당이 실패할 경우, 덜 효율적인 알고리즘이 선택됩니다.
| 기능 테스트 매크로 | 값 | 표준 | 기능 |
|---|---|---|---|
__cpp_lib_constexpr_algorithms
|
202306L
|
(C++26) | constexpr 안정 정렬, 오버로드 ( 1 ) , ( 3 ) |
예제
#include <algorithm> #include <array> #include <iostream> #include <string> #include <vector> struct Employee { int age; std::string name; // 비교에 참여하지 않음 }; bool operator<(const Employee& lhs, const Employee& rhs) { return lhs.age < rhs.age; } #if __cpp_lib_constexpr_algorithms >= 202306L consteval auto get_sorted() { auto v = std::array{3, 1, 4, 1, 5, 9}; std::stable_sort(v.begin(), v.end()); return v; } static_assert(std::ranges::is_sorted(get_sorted())); #endif int main() { std::vector<Employee> v{{108, "Zaphod"}, {32, "Arthur"}, {108, "Ford"}}; std::stable_sort(v.begin(), v.end()); for (const Employee& e : v) std::cout << e.age << ", " << e.name << '\n'; }
출력:
32, Arthur 108, Zaphod 108, Ford
참고 항목
|
범위를 오름차순으로 정렬
(함수 템플릿) |
|
|
범위의 첫 N개 요소를 정렬
(함수 템플릿) |
|
|
요소들의 상대적 순서를 유지하며 두 그룹으로 분할
(함수 템플릿) |
|
|
(C++20)
|
동일한 요소들 간의 순서를 유지하며 범위의 요소들을 정렬
(알고리즘 함수 객체) |