现在的位置: 首页 > 综合 > 正文

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

2012年02月09日 ⁄ 综合 ⁄ 共 393字 ⁄ 字号 评论关闭
// 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;
}

抱歉!评论已关闭.