mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
43 lines
1 KiB
C++
43 lines
1 KiB
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <vector>
|
|
#include <algorithm>
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include <iterator>
|
|
|
|
#ifdef MAIN
|
|
#define parsrt2_test main
|
|
#endif
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
|
|
static bool str_compare(const char* a_, const char* b_)
|
|
{
|
|
return strcmp(a_, b_) < 0 ? 1 : 0;
|
|
}
|
|
|
|
int parsrt2_test(int, char**)
|
|
{
|
|
cout<<"Results of parsrt2_test:"<<endl;
|
|
|
|
char* names[] = { "aa", "ff", "dd", "ee", "cc", "bb" };
|
|
|
|
const unsigned nameSize = sizeof(names) / sizeof(names[0]);
|
|
vector <char*> v1(nameSize);
|
|
for(int i = 0; i < v1.size(); i++)
|
|
v1[i] = names[i];
|
|
ostream_iterator<char*> iter(cout, " ");
|
|
copy(v1.begin(), v1.end(), iter);
|
|
cout << endl;
|
|
partial_sort(v1.begin(),
|
|
v1.begin() + nameSize / 2,
|
|
v1.end(),
|
|
str_compare);
|
|
copy(v1.begin(), v1.end(), iter);
|
|
cout << endl;
|
|
return 0;
|
|
}
|