std::qsort() algorithm
- since C++98
// (1)
void qsort( void *ptr, std::size_t count, std::size_t size, cpp_compare_pred comp );
// (2)
void qsort( void *ptr, std::size_t count, std::size_t size, c_compare_pred comp );
With the exposition-only types defined as follows:
extern "C++" using cpp_compare_pred = int(const void*, const void*);
extern "C" using c_compare_pred = int(const void*, const void*);
Sorts the given array pointed to by ptr
in ascending order.
The array contains count
elements of size
bytes. Function pointed to by comp
is used for object comparison.
If comp
indicates two elements as equivalent, their order is unspecified.
If the type of the elements of the array is not a PODType (until C++11)TriviallyCopyable (since C++11) type, the behavior is undefined
.Parameters
ptr | Pointer to the array to sort. |
count | The number of elements in the array. |
size | The size of each element of the array in bytes. |
comp | Comparison function which returns:
The signature of the comparison function should be equivalent to the following:
|
Return value
(none)
Complexity
Not specified.
Exceptions
(none)
Notes
Despite the name, C++, C, and POSIX standards do not require this function to be implemented using Quicksort or make any complexity or stability guarantees.
The two overloads provided by the C++ standard library are distinct because the types of the parameter comp
are distinct (language linkage is part of its type).
Examples
#include <array>
#include <climits>
#include <compare>
#include <cstdlib>
#include <iostream>
int main()
{
std::array a {-2, 99, 0, -743, INT_MAX, 2, INT_MIN, 4};
std::qsort
(
a.data(),
a.size(),
sizeof(decltype(a)::value_type),
[](const void* x, const void* y)
{
const int arg1 = *static_cast<const int*>(x);
const int arg2 = *static_cast<const int*>(y);
const auto cmp = arg1 <=> arg2;
if (cmp < 0)
return -1;
if (cmp > 0)
return 1;
return 0;
}
);
for (int ai : a)
std::cout << ai << ' ';
std::cout << '\n';
}
-2147483648 -743 -2 0 2 4 99 2147483647
Hover to see the original license.