C++ STL std::replace() 函數
replace() 函數是算法頭的庫函數,用於在容器的給定範圍內用新值替換舊值,它接受指向起始位置和結束位置的迭代器,要替換的舊值和新值要分配的值。
注意:使用 replace() 函數 - 包括<algorithm>
標題或者您可以簡單使用<bits/stdc++.h>
頭文件。
std::replace() 函數的語法
std::replace( iterator start, iterator end, const T& old_value, const T& new_value);
參數:
iterator start, iterator end
- 這些是指向容器中開始和結束位置的迭代器,我們必須在那裏運行替換操作。old_value
- 是要搜索並替換為新值的值。new_value
- 要分配的值而不是 old_value。
返回值: void
- 它返回注意。
例:
Input: vector<int> v{ 10, 20, 10, 20, 10, 30, 40, 50, 60, 70 }; //replacing 10 with 99 replace(v.begin(), v.end(), 10, 99); Output: 99 20 99 20 99 30 40 50 60 70
C++ STL程序演示std::replace()函數的使用
在這個程序中,我們有一個向量,我們將一個新值分配給一個舊值。
//C++ STL program to demonstrate use of
//std::replace() function
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
//vector
vector<int> v{ 10, 20, 10, 20, 10, 30, 40, 50, 60, 70 };
//printing vector elements
cout << "before replacing, v:";
for (int x:v)
cout << x << " ";
cout << endl;
//replacing 10 with 99
replace(v.begin(), v.end(), 10, 99);
//printing vector elements
cout << "after replacing, v:";
for (int x:v)
cout << x << " ";
cout << endl;
return 0;
}
輸出
before replacing, v:10 20 10 20 10 30 40 50 60 70 after replacing, v:99 20 99 20 99 30 40 50 60 70
參考:C++ std::replace()
相關用法
- C++ std::replace_if()用法及代碼示例
- C++ std::replace_copy_if()用法及代碼示例
- C++ std::replace_copy()用法及代碼示例
- C++ std::reverse()用法及代碼示例
- C++ std::remove_cv用法及代碼示例
- C++ std::remove_const用法及代碼示例
- C++ std::remove_volatile用法及代碼示例
- C++ std::reverse_copy用法及代碼示例
- C++ std::rank用法及代碼示例
- C++ std::rotate_copy()用法及代碼示例
- C++ std::rotate()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ std::is_member_object_pointer模板用法及代碼示例
- C++ std::copy_n()用法及代碼示例
- C++ std::string::insert()用法及代碼示例
- C++ std::is_sorted_until用法及代碼示例
- C++ std::iota用法及代碼示例
- C++ std::numeric_limits::digits用法及代碼示例
注:本文由純淨天空篩選整理自 std::replace() function with example in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。