c++stl和std_std :: replace()函数以及C ++ STL中的示例

c++stl和std

C ++ STL std :: replace()函数 (C++ STL std::replace() function)

replace() function is a library function of algorithm header, it is used to replace an old value with a new value in the given range of a container, it accepts iterators pointing to the starting and ending positions, an old value to be replaced and a new value to be assigned.

replace()函数算法标头的库函数,用于在容器的给定范围内用新值替换旧值,它接受指向开始和结束位置的迭代器,要替换的旧值以及要分配的新值。

Note: To use replace() function – include <algorithm> header or you can simple use <bits/stdc++.h> header file.

注意:要使用replace()函数 –包括<algorithm>头文件,或者您可以简单地使用<bits / stdc ++。h>头文件。

Syntax of std::replace() function

std :: replace()函数的语法

    std::replace(
iterator start, 
iterator end, 
const T& old_value, 
const T& new_value);

Parameter(s):

参数:

  • iterator start, iterator end – these are the iterators pointing to the starting and ending positions in the container, where we have to run the replace operation.

    迭代器开始,迭代器结束 –这些迭代器指向容器中我们必须运行替换操作的开始和结束位置。

  • old_value – is the value to be searched and replaced with the new value.

    old_value –是要搜索并替换为新值的值。

  • new_value – a value to be assigned instead of an old_value.

    new_value –要分配的值,而不是old_value。

Return value: void – it returns noting.

返回值: void –返回注释。

Example:

例:

    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)

In this program, we have a vector and we are assigning a new value to an old value.

在此程序中,我们有一个向量,并且正在将新值分配给旧值。

//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;
}

Output

输出量

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

Reference: C++ std::replace()

参考: C ++ std :: replace()

翻译自: https://www.includehelp.com/stl/std-replace-function-with-example.aspx

c++stl和std

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378481.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《Two Dozen Short Lessons in Haskell》(二十)分数

《Two Dozen Short Lessons in Haskell》&#xff08;Copyright © 1995, 1996, 1997 by Rex Page&#xff0c;有人翻译为Haskell二十四学时教程&#xff0c;该书如果不用于赢利&#xff0c;可以任意发布&#xff0c;但需要保留他们的copyright&#xff09;这本书是学习 Ha…

oracle 查询不能重复,oracle – 如何防止在选择查询中选择重复行?

我被赋予了从Oracle数据库中选择关键数据的任务,但我注意到我的select正在返回重复的行.我不需要它们用于我的报告但我不希望它们删除它们.有人可以帮助只获取我需要的数据.我尝试了以下代码,但这没有用.SELECT distinct bbp.SUBCAR "Treadwell",bbp.BATCH_ID "…

数字图像课程工程大作业分析

试题分析&#xff1a; 在连续的视频中对火焰及水柱的轨迹检测&#xff0c;效果如图。 ** 提示&#xff1a; 1、火焰可利用亮度和颜色 2、水柱的轨迹需要先用背景差分获得水柱的连通域&#xff0c;然后利用连通域上的像素点进行曲线的拟合&#xff0c;水枪的位置视为已知&#…

设计电子商务网站的10个技巧(转自ITEye)

导读&#xff1a;随着先进科学技术的应用&#xff0c;人们无需外出逛几个小时来“猎”东西&#xff0c;直接坐在家里就可以购买所需商品&#xff0c;支付服务费用。你只需一台电脑就能搞定。人们习惯了周到的服务和漂亮的橱窗&#xff0c;对网店的选择也不例外。因此&#xff0…

分析酸对酸性染料染羊毛染色性能的影响?举例说明酸性染料染羊毛时,如何选择合适的染浴pH值?并说明原因。

分析酸对酸性染料染羊毛染色性能的影响?举例说明酸性染料染羊毛时,如何选择合适的染浴pH值?并说明原因。 标准答案: 羊毛属于蛋白质纤维,属于两性纤维,酸影响羊毛的解离程度,带电性及带电量,影响热力学性能。等电点以下,羊毛带正电荷,与阴离子酸性染料之间存在静电引…

ORACLE连接数据库(备忘)

常用命令&#xff1a; conn sys/密码 as sysdba 连接数据库转载于:https://www.cnblogs.com/jiangu66/archive/2013/05/01/3053787.html

stl swap函数_vector :: swap()函数以及C ++ STL中的示例

stl swap函数C vector :: swap()函数 (C vector::swap() function) vector::swap() is a library function of "vector" header, it is used to swap the content of the vectors, it is called with a vector and accepts another vector as an argument and swaps…

C++语法:vector的使用

【1】vector的创建与元素插入【2】vector元素的访问【3】vector的基本使用技巧【4】vector的几个重要操作【1】vector的创建与元素插入 std::vector<cv::Point> points; //vector容器中保存的类型是Point for (int i 0;i < 10;i) {float x rng.uniform(0, img.cols…

一、经含氟防水剂整理的织物主要存在的不足?

经含氟防水剂整理的织物主要存在的不足? 收集资料阶段 含氟防水剂有哪些优缺点 一、含氟防水剂的优点 1、防水效果好,等级高。而无氟防水剂效果相对来说要差一些; 2、兼具防油的功能。无氟防水剂是不具备防油功能的; 3、稳定性好、与其他助剂的配伍好,工艺适应性强;有机…

Apache Web Login Authentication

Apache Web Login Authentication: Adding password protection to a web site using Apache web server authentication. AuthLDAPURL ldap://ldap.your-domain.com:389/ostooges?uid?subAuthLDAPBindDN "cnStoogeAdmin,ostooges"AuthLDAPBindPassword secret1Aut…

oracle中的with的用法,oracle中with子句的用法(转)

语法&#xff1a;WITH query_name AS (subquery)[, query_name AS (subquery) ]...使用在主select关键字前&#xff0c;oracle将其当做一个内联视图或者临时表使用。例子&#xff1a;1.最简单的使用方法&#xff1a;如查询部门名称包含“A”的所有员工信息--with clausewith a …

模拟一个排队系统

现在有一个数据源&#xff0c;有两种状态&#xff08;ON OFF&#xff09;&#xff0c;ON的持续时间服从均值为T_on的指数分布&#xff0c;OFF的持续时间服从均值为T_off的指数分布&#xff0c;源只在ON的时候产生数据包&#xff0c;服从均值为λ的指数分布 模拟一个排队系统 每…

stl中copy()函数_std :: copy_if()函数以及C ++ STL中的示例

stl中copy()函数C STL std :: copy_if()函数 (C STL std::copy_if() function) copy_if() function is a library function of algorithm header, it is used to copy the elements of a container, it copies the certain elements (which satisfy the given condition) of a…

C++语法:求vector中的最大值及其位置

代码&#xff1a; #include <iostream> #include <vector> #include <algorithm> using namespace std;int main(){vector<int> a { 2,4,6,7,1,0,8,9,6,3,2 };auto maxPosition max_element(a.begin(), a.end());cout << *maxPosition <&l…

二、织物具备超级防水效果的条件?

织物具备超级防水效果的条件? 收集资料阶段 莲花效应(Lotus Effect),指莲叶表面具有超疏水(superhydrophobicity)以及自洁(self-cleaning)的特性。 由于莲叶具有疏水、不吸水的表面,落在叶面上的雨水会因表面张力的作用形成水珠,换言之,水与叶面的接触角(contacta…

C#编码简单性之函数篇(如何编写简短的C#代码,随时更新)

作者&#xff1a;陈勇出处&#xff1a;blog.csdn.net/cheny_com这是编码简单性系列中的其中一篇&#xff0c;之前几篇包括代码篇和语义篇。因为要积累案例&#xff0c;会随时更新。之前提到&#xff1a;编码简单性的“心法”就是&#xff1a;只要屏幕上有任何两部分代码看上去相…

R学习笔记(1):R是什么

本文最新版已更新至http://thinkinside.tk/2013/05/03/r_notes_1_what.html 在学习量化投资的时候&#xff0c;我发现了R&#xff08;www.r-project.org&#xff09;。R到底是什么呢&#xff1f;在开始之前&#xff0c;先看看R的神奇之处。 1. R初窥 从CRAN&#xff08;The Co…

oracle网卡,Oracle_bond网卡配置

***************************loyu*******************************************************双网卡创建bond虚拟网卡实验*************************cat > /etc/sysconfig/network-scripts/ifcfg-bond0 << EofDEVICEbond0BOOTPROTOstaticONBOOTyesIPADDR172.16.116.60N…

Python | 展示一个break语句示例

break is a keyword in python just like another programming language and it is used to break the execution of loop statement. 就像另一种编程语言一样&#xff0c; break是python中的关键字&#xff0c;用于中断loop语句的执行。 In the given example, loop is runni…

数字图像处理知识总结

一&#xff1a;基本概念 数字图像&#xff1a;指由被称作像素的小块区域组成的二维矩阵。将物理图像行列划分后&#xff0c;每个小块区域称为像素&#xff08;pixel&#xff09;。每个像素包括两个属性&#xff1a;位置和灰度。图像数字化一般分为采样、量化与编码三个步骤。数…