mirror of
https://github.com/boostorg/sort.git
synced 2026-01-21 05:22:11 +00:00
9 lines
174 B
C++
9 lines
174 B
C++
#include <boost/sort/spreadsort/integer_sort.hpp>
|
|
|
|
int main()
|
|
{
|
|
int v[] = { 1, 2, 3, 0 };
|
|
boost::sort::spreadsort::integer_sort( v + 0, v + 4 );
|
|
return v[ 0 ];
|
|
}
|