mirror of
https://github.com/ENSL/NS.git
synced 2024-11-24 13:31:12 +00:00
2f9f0c732e
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@277 67975925-1194-0748-b3d5-c16f83f1a3a1
34 lines
918 B
C++
34 lines
918 B
C++
// STLport regression testsuite component.
|
|
// To compile as a separate example, please #define MAIN.
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
|
|
#ifdef MAIN
|
|
#define vec7_test main
|
|
#endif
|
|
|
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
|
using namespace std;
|
|
#endif
|
|
int vec7_test(int, char**)
|
|
{
|
|
cout<<"Results of vec7_test:"<<endl;
|
|
int array1 [] = { 1, 4, 25 };
|
|
int array2 [] = { 9, 16 };
|
|
|
|
vector<int> v(array1, array1 + 3);
|
|
v.insert(v.begin(), 0); // Insert before first element.
|
|
v.insert(v.end(), 36); // Insert after last element.
|
|
int i;
|
|
for(i = 0; i < v.size(); i++)
|
|
cout << "v[" << i << "] = " << v[i] << endl;
|
|
cout << endl;
|
|
// Insert contents of array2 before fourth element.
|
|
v.insert(v.begin() + 3, array2, array2 + 2);
|
|
for(i = 0; i < v.size(); i++)
|
|
cout << "v[" << i << "] = " << v[i] << endl;
|
|
cout << endl;
|
|
return 0;
|
|
}
|