123
This commit is contained in:
38
STLPORT/test/regression/rndshuf2.cpp
Normal file
38
STLPORT/test/regression/rndshuf2.cpp
Normal file
@@ -0,0 +1,38 @@
|
||||
// STLport regression testsuite component.
|
||||
// To compile as a separate example, please #define MAIN.
|
||||
#include <iterator>
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
#include "rand.h"
|
||||
#include <iterator>
|
||||
#include <functional>
|
||||
#include <numeric>
|
||||
|
||||
#ifdef MAIN
|
||||
#define rndshuf2_test main
|
||||
#endif
|
||||
|
||||
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||||
using namespace std;
|
||||
#endif
|
||||
|
||||
int rndshuf2_test(int, char**)
|
||||
{
|
||||
cout<<"Results of rndshuf2_test:"<<endl;
|
||||
|
||||
vector <int> v1(10);
|
||||
iota(v1.begin(), v1.end(), 0);
|
||||
ostream_iterator <int> iter(cout, " ");
|
||||
copy(v1.begin(), v1.end(), iter);
|
||||
cout << endl;
|
||||
MyRandomGenerator r;
|
||||
for(int i = 0; i < 3; i++)
|
||||
{
|
||||
random_shuffle(v1.begin(), v1.end(), r);
|
||||
copy(v1.begin(), v1.end(), iter);
|
||||
cout << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user