mirror of
https://github.com/ENSL/NS.git
synced 2024-11-28 15:22:06 +00:00
30 lines
773 B
C++
30 lines
773 B
C++
|
// STLport regression testsuite component.
|
||
|
// To compile as a separate example, please #define MAIN.
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <deque>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#ifdef MAIN
|
||
|
#define insert2_test main
|
||
|
#endif
|
||
|
|
||
|
#if !defined (STLPORT) || defined(__STL_USE_NAMESPACES)
|
||
|
using namespace std;
|
||
|
#endif
|
||
|
|
||
|
int insert2_test(int, char**)
|
||
|
{
|
||
|
cout<<"Results of insert2_test:"<<endl;
|
||
|
char* array1 [] = { "laurie", "jennifer", "leisa" };
|
||
|
char* array2 [] = { "amanda", "saskia", "carrie" };
|
||
|
|
||
|
deque<char*> names(array1, array1 + 3);
|
||
|
deque<char*>::iterator i = names.begin() + 2;
|
||
|
copy(array2, array2 + 3, inserter(names, i));
|
||
|
std::deque<char*>::iterator j;
|
||
|
for(j = names.begin(); j != names.end(); j++)
|
||
|
std::cout << *j << std::endl;
|
||
|
return 0;
|
||
|
}
|