merge http://www.cplusplus.com/reference/algorithm/merge/

// merge algorithm example
#include <iostream>
#include
<algorithm>
#include
<vector>
using namespace std;

int main () {
int first[] = {5,10,15,20,25};
int second[] = {50,40,30,20,10};
vector
<int> v(10);
vector
<int>::iterator it;

sort (first,first
+5);
sort (second,second
+5);
merge (first,first
+5,second,second+5,v.begin());

cout
<< "The resulting vector contains:";
for (it=v.begin(); it!=v.end(); ++it)
cout
<< " " << *it;

cout
<< endl;

return 0;
}

posted on 2011-07-29 22:31  more think, more gains  阅读(179)  评论(0编辑  收藏  举报

导航