template <class InputIter1, class InputIter2, class OutputIter> OutputIter merge( InputIter1 xFirst1, InputIter1 xLast1, InputIter2 xFirst2, InputIter2 xLast2, OutputIter xOutput );
#include <algorithm>
template <class InputIter1, class InputIter2, class OutputIter, class BinaryPred> OutputIter merge( InputIter1 xFirst1, InputIter1 xLast1, InputIter2 xFirst2, InputIter2 xLast2, OutputIter xOutput, BinaryPred xComp );
#include <iostream>
#include <vector>
#include <algorithm>
int main()
{
using namespace std;
// Create two vector instances
vector<int> qV1;
for (int i = 0; i < 10; i += 2) {
qV1.push_back(i);
}
vector<int> qV2;
for (int i = -2; i < 9; i += 3) {
qV2.push_back(i);
}
vector<int>::iterator qIter;
cout << "Vector1: ";
for (qIter = qV1.begin(); qIter != qV1.end(); ++qIter) {
cout << *qIter << " ";
}
cout << endl;
cout << "Vector2: ";
for (qIter = qV2.begin(); qIter != qV2.end(); ++qIter) {
cout << *qIter << " ";
}
cout << endl;
vector<int> qResult(9);
// Merge the five entries with four.
merge(qV1.begin(), qV1.end(), qV2.begin(), qV2.end(), qResult.begin());
cout << "Merged Vector: ";
for (qIter = qResult.begin(); qIter != qResult.end(); ++qIter) {
cout << *qIter << " ";
}
cout << endl;
// Keep the window open
cin.get();
return 0;
}
© 20072025 XoaX.net LLC. All rights reserved.