Demo00

std::transform在指定的范围内应用于给定的操作,并将结果存储在指定的另一个范围内。要使用std::transform函数需要包含头文件。

以下是std::transform的两个声明,一个是对应于一元操作,一个是对应于二元操作:

template <class InputIterator, class OutputIterator, class UnaryOperation>

OutputIterator transform (InputIterator first1, InputIterator last1,

OutputIterator result, UnaryOperation op);

template <class InputIterator1, class InputIterator2,

class OutputIterator, class BinaryOperation>

OutputIterator transform (InputIterator1 first1, InputIterator1 last1,

InputIterator2 first2, OutputIterator result,

BinaryOperation binary_op);

对于一元操作,将op应用于[first1, last1)范围内的每个元素,并将每个操作返回的值存储在以result开头的范围内。给定的op将被连续调用last1-first1次。op可以是函数指针或函数对象或lambda表达式。

如op的一个实现 即将[first1, last1)范围内的每个元素加5,然后依次存储到result中。

int op_increase(int i) {return (i + 5)};

调用std::transform的方式如下:

std::transform(first1, last1, result, op_increase);

对于二元操作,使用[first1, last1)范围内的每个元素作为第一个参数调用binary_op,并以first2开头的范围内的每个元素作为第二个参数调用binary_op,每次调用返回的值都存储在以result开头的范围内。给定的binary_op将被连续调用last1-first1次。binary_op可以是函数指针或函数对象或lambda表达式。

如binary_op的一个实现即将first1和first2开头的范围内的每个元素相加,然后依次存储到result中。

int op_add(int, a, int b) {return (a + b)};

调用std::transform的方式如下:

  1. std::transform(first1, last1, first2, result, op_add);
  2. std::transform支持in place,即resultfirst1指向的位置可以是相同的。std::transform的主要作用应该就是省去了我们自己写for循环实现。

以下是摘自对std::transform的英文解释:

  1. /*
  2. // reference: http://en.cppreference.com/w/cpp/algorithm/transform
  3. template< class InputIt, class OutputIt, class UnaryOperation >
  4. OutputIt transform( InputIt first1, InputIt last1, OutputIt d_first, UnaryOperation unary_op )
  5. {
  6. while (first1 != last1) {
  7. *d_first++ = binary_op(*first1++, *first2++);
  8. }
  9. return d_first;
  10. }
  11. template< class InputIt1, class InputIt2, class OutputIt, class BinaryOperation >
  12. OutputIt transform( InputIt1 first1, InputIt1 last1, InputIt2 first2, OutputIt d_first, BinaryOperation binary_op );
  13. std::transform applies the given function to a range and stores the result in another range, beginning at d_first.
  14. (1): The unary operation unary_op is applied to the range defined by [first1, last1).
  15. (2): The binary operation binary_op is applied to pairs of elements from two ranges:
  16. one defined by [first1, last1) and the other beginning at first2.
  17. Parameters:
  18. first1, last1: the first range of elements to transform
  19. first2: the beginning of the second range of elements to transform
  20. d_first:the beginning of the destination range, may be equal to first1 or first2
  21. unary_op: unary operation function object that will be applied.
  22. binary_op: binary operation function object that will be applied.
  23. Return value: Output iterator to the element past the last element transformed.
  24. std::for_each: ignores the return value of the function and guarantees order of execution.
  25. std::transform: assigns the return value to the iterator, and does not guarantee the order of execution.
  26. */

以下是std::transform用法举例:

  1. #include "transform.hpp"
  2. #include <algorithm> // std::transform
  3. #include <string>
  4. #include <cctype> // std::toupper
  5. #include <iostream>
  6. #include <vector>
  7. #include <functional> // std::plus c++14
  8. int test_transform1()
  9. {
  10. std::string s("Hello");
  11. std::transform(s.begin(), s.end(), s.begin(),
  12. [](unsigned char c) { return std::toupper(c); });
  13. std::cout << s << std::endl; // HELLO
  14. std::transform(s.begin(), s.end(), s.begin(), ::tolower);
  15. std::cout << s << std::endl; // hello
  16. ////////////////////////////////
  17. std::vector<int> arr{ 1, 3, 5 };
  18. std::vector<int> arr2{ 1, 3, 5 };
  19. std::vector<int> arr3{ 1, 3, 5 };
  20. std::transform(arr.begin(), arr.end(), arr.begin(),
  21. [](int d) -> int {return d * 5; }); // for_each
  22. for (auto value : arr) {
  23. std::cout << value << " "; // 5 15 25
  24. }
  25. std::cout<<std::endl;
  26. std::for_each(arr2.begin(), arr2.end(), [](int& a) {a *= 5; });
  27. for (auto value : arr2) {
  28. std::cout << value << " "; // 5 15 25
  29. }
  30. std::cout << std::endl;
  31. for (auto& value : arr3) {
  32. value *= 5;
  33. }
  34. for (auto value : arr3) {
  35. std::cout << value << " "; // 5 15 25
  36. }
  37. std::cout << std::endl;
  38. std::vector<std::string> names = { "hi", "test", "foo" };
  39. std::vector<std::size_t> name_sizes;
  40. ///////////////////////////
  41. std::transform(names.begin(), names.end(), std::back_inserter(name_sizes),
  42. [](std::string name) { return name.size(); });
  43. for (auto value : name_sizes) {
  44. std::cout << value << " "; // 2 4 3
  45. }
  46. std::cout << std::endl;
  47. std::for_each(name_sizes.begin(), name_sizes.end(), [](std::size_t name_size) {
  48. std::cout << name_size << " "; // 2 4 3
  49. });
  50. std::cout << std::endl;
  51. return 0;
  52. }
  53. /////////////////////////////////////////////////////////
  54. // reference: http://www.cplusplus.com/reference/algorithm/transform/
  55. static int op_increase(int i) { return ++i; }
  56. int test_transform2()
  57. {
  58. std::vector<int> foo;
  59. std::vector<int> bar;
  60. // set some values:
  61. for (int i = 1; i<6; i++)
  62. foo.push_back(i * 10); // foo: 10 20 30 40 50
  63. bar.resize(foo.size()); // allocate space
  64. std::transform(foo.begin(), foo.end(), bar.begin(), op_increase);
  65. // bar: 11 21 31 41 51
  66. // std::plus adds together its two arguments:
  67. std::transform(foo.begin(), foo.end(), bar.begin(), foo.begin(), std::plus<int>());
  68. // foo: 21 41 61 81 101
  69. std::cout << "foo contains:";
  70. for (std::vector<int>::iterator it = foo.begin(); it != foo.end(); ++it)
  71. std::cout << ' ' << *it; // 21 41 61 81 101
  72. std::cout << '\n';
  73. return 0;
  74. }

GitHub:https://github.com/fengbingchun/Messy_Test

Demo00的更多相关文章

  1. jBox使用方法

    1.引入jquery文件 2.引入css和jBox文件 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml& ...

  2. 《Java从入门到精通》src9-25

    find . -name *.java |xargs  -i sh -c "echo {};cat {}" > ../all.java[op@TIM src]$ cat al ...

  3. java基础-day31

    第08天 JDBC 今日内容介绍 u JDBC的概述及入门案例 u JDBC的API详解 u JDBC预处理对象 第1章   JDBC的概述及入门案例 1.1  JDBC概述和原理 1.1.1 JDB ...

  4. synchronized的四种用法

    一 修饰方法  Synchronized修饰一个方法很简单,就是在方法的前面加synchronized,synchronized修饰方法和修饰一个代码块类似,只是作用范围不一样,修饰代码块是大括号括起 ...

  5. css-知识总结

    是什么 CSS通常称为CSS样式或层叠样式表,主要用于设置HTML页面中的文本内容(字体,大小,对其方式等),图片的外形 (高宽.边框样式.边距等)以及版面的布局等外观显示样式. CSS可以是HTML ...

  6. css display:table圣杯布局

    圣杯布局指的是一个网页由页眉,3等高列(2个固定侧栏和中心内容主体)和贴在页面底部的页脚组成. 主要思路是对整个容器使用地上diaplay:table 的css规则,然后分别对页眉页脚使用displa ...

  7. css浮动布局小技巧

    父元素如何围住浮动的子元素的三种办法: 一.为父元素应用overflow:hidden. overflow真正用途是防止包含元素被大的内容撑开,设定了宽度之后,包含元素将超过容器的内容减掉:而它还有另 ...

  8. java synchronized的四种用法

    一 修饰方法 Synchronized修饰一个方法很简单,就是在方法的前面加synchronized,synchronized修饰方法和修饰一个代码块类似,只是作用范围不一样,修饰代码块是大括号括起来 ...

  9. java中接口的简单运用&java中的一些异常(运用myeclipse)

    package test;//创建一个名为test的包 public class A4paper implements Paper { public String getSize(){ return& ...

随机推荐

  1. 深入理解 DNS

    深入理解 DNS 简介 DNS(Domain Name System)域名系统,它是一个将域名和 IP 地址相互映射的一个分布式数据库,把容易记忆的主机名转换成主机 IP 地址. DNS使用 TCP ...

  2. Mssql 查询某记录前后N条

    Sqlserver 查询指定记录前后N条,包括当前数据 条件 [ID] 查询 [N]条 select * from [Table] where ID in (select top ([N]+1) ID ...

  3. JenKins结合cppcheck及cpplint进行代码风格及静态代码检测

    JenKins结合cppcheck及cpplint 最近公司需要在Jenkins上安装cppcheck及cpplint进行代码风格及静态代码检测,这里记录下过程. 前提条件 安装了Jenkins 步骤 ...

  4. MySQL 5.7 安装教程(Win 10)

    MySQL5.7 下载 官网下载(不推荐使用):https://dev.mysql.com/downloads/mysql/ 清华镜像站下载(推荐):https://mirrors.tuna.tsin ...

  5. linux图形界面 KDE、GNOME

    1.Linux图形桌面系统组成(由上往下层次结构) 窗口管理器——Enlightenmen.icewm.Fvwm.window-maker 桌面环境———Gnome.KDE.CDE X WINDOW— ...

  6. opencv 4 图像处理 (1 线性滤波,非线性滤波)

    1 线性滤波:方框滤波.均值滤波.高斯滤波 1.1方框滤波(box Filter) 1.2均值滤波(blur函数) 缺陷: 1.3高斯滤波(GaussianBlur函数) 1.4线性滤波核心API函数 ...

  7. 源码分析RocketMQ消息轨迹

    目录 1.发送消息轨迹流程 1.1 DefaultMQProducer构造函数 1.2 SendMessageTraceHookImpl钩子函数 1.3 TraceDispatcher实现原理 2. ...

  8. windows下搭建dubbo 环境(dubbo-admin和服务提供者消费者)

    ---恢复内容开始--- 一.  dubbo-admin管理控制台 从 https://github.com/apache/dubbo-admin clone项目到本地. 修改dubbo-admin- ...

  9. 1 JAVA语言的特点

    1.可移植性 通过先将java文件编译成字节码,再由特定平台的JVM转义为机器码,使得JAVA语言具有,编写一次,到处执行的特点.可移植性好. 2.面向对象的编程 面向对象编程的良好实现.有良好的面向 ...

  10. 在.NET Core中使用Jwt对API进行认证

    在.NET Core中想用给API进行安全认证,最简单的无非就是Jwt,悠然记得一年前写的Jwt Demo,现在拿回来改成.NET Core的,但是在编码上的改变并不大,因为Jwt已经足够强大了.在项 ...