STL 之for_each,transform

38 篇文章 0 订阅

返回


for_each:对指定区间中的每个元素使用指定的函数进行访问及处理,所用的函数作为参数传递给该函数。

transform:元素传输


声明:

#include <algorithm>
template <class inputItr,class function>
function for_each(inputItr first,inputItr last,function func);

template <class inputItr, class outputItr, class unaryOperation>
outputItr transform(inputItr first,inputItr last, outputItr destFirst,unaryOperation op);

template <class inputItr1, class inputItr2, class outputItr, class binaryOperation>
outputItr transform(inputItr1 first1, inputItr1 last, inputItr2 first2, outputItr destFirst,binaryOperation bop);

示例代码:

#include <iostream>
#include <list>

#include <string>
#include <numeric>
#include <iterator>
#include <vector>
#include <functional>

#include <algorithm>

using namespace std;

void doubleNum(int& num) {
	num = 2 * num;
	cout << num << " ";
}

int main() {
	char cList[5] = {'a','b','c','d','e'};
	vector<char> charList(cList,cList+5);
	ostream_iterator<char> sreen(cout, " ");

	cout << "charList:" << endl;
	copy(charList.begin(),charList.end(),sreen);
	cout << endl;

	//transform
	transform(charList.begin(),charList.end(),charList.begin(),toupper);
	cout << "charList:" << endl;
	copy(charList.begin(),charList.end(),sreen);
	cout << endl;

	int list[7] = {2,8,5,1,7,11,3};
	ostream_iterator<int> srceenInt(cout, " ");
	cout << "list" << endl;
	copy(list,list+7,srceenInt);
	cout << endl;

	// for_each
	for_each(list,list + 7, doubleNum);
	cout << endl;

	cout << "list" << endl;
	copy(list,list+7,srceenInt);
	cout << endl;
	
	return 0;
}

运行结果:

charList:
a b c d e
charList:
A B C D E
list
2 8 5 1 7 11 3
4 16 10 2 14 22 6
list
4 16 10 2 14 22 6

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Yours风之恋

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值