mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-30 16:30:59 +00:00
f44f16d59a
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@168 67975925-1194-0748-b3d5-c16f83f1a3a1
30 lines
654 B
C++
30 lines
654 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
|
|
#ifdef MAIN
|
|
#define stblptn0_test main
|
|
#endif
|
|
static bool less_10(int a_)
|
|
{
|
|
return a_ < 10 ? 1 : 0;
|
|
}
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
int stblptn0_test(int, char**)
|
|
{
|
|
cout<<"Results of stblptn0_test:"<<endl;
|
|
|
|
int numbers[6] = { 10, 5, 11, 20, 6, -2 };
|
|
|
|
stable_partition((int*)numbers, (int*)numbers + 6, less_10);
|
|
for(int i = 0; i < 6; i++)
|
|
cout << numbers[i] << ' ';
|
|
cout << endl;
|
|
cout.flush();
|
|
return 0;
|
|
}
|