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

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

int main () {
int myints[] = { 10, 20, 30, 30, 20, 10, 10, 20 };
vector
<int> myvector (myints, myints+8); // 10 20 30 30 20 10 10 20

replace (myvector.begin(), myvector.end(),
20, 99); // 10 99 30 30 99 10 10 99

cout
<< "myvector contains:";
for (vector<int>::iterator it=myvector.begin(); it!=myvector.end(); ++it)
cout
<< " " << *it;

cout
<< endl;

return 0;
}

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

导航