C++相关闲碎记录(8)

1、预定义的Function adapter 和 binder

#include <iostream>
#include <functional>

int main() {
    auto plus10 = std::bind(std::plus<int>(), std::placeholders::_1, 10);
    std::cout << "+10:       " << plus10(6) << std::endl;

    auto plus10times2 = std::bind(std::multiplies<int>(), 
                                  std::bind(std::plus<int>(), 
                                            std::placeholders::_1, 
                                            10), 
                                  2);
    std::cout << "+10 *2:    " << plus10times2(7) << std::endl;

    auto pow3 = std::bind(std::multiplies<int>(), 
                          std::bind(std::multiplies<int>(), 
                                    std::placeholders::_1, 
                                    std::placeholders::_1), 
                          std::placeholders::_1);
    std::cout << "x*x*x:     " << pow3(7) << std::endl;

    auto inverseDivide = std::bind(std::divides<double>(),
                                   std::placeholders::_2,
                                   std::placeholders::_1);
    std::cout << "invdiv:    " << inverseDivide(49, 7) << std::endl;

}
输出:
+10:       16
+10 *2:    34
x*x*x:     343
invdiv:    0.142857

2、bind调用全局函数

#include <iostream>
#include <algorithm>
#include <functional>
#include <locale>
#include <string>

using namespace std;
using namespace std::placeholders;

char myToupper(char c) {
    std::locale loc;
    return std::use_facet<std::ctype<char>> (loc).toupper(c);
}

int main() {
    string s("Internationalization");
    string sub("Nation");

    // search substring case insensitive
    string::iterator pos;
    pos = search(s.begin(), s.end(),
                 sub.begin(), sub.end(),
                 bind(equal_to<char>(),
                      bind(myToupper, _1),
                      bind(myToupper, _2)));
    if (pos != s.end()) {
        std::cout << "\"" << sub << "\" is part of \"" << s << "\"" << std::endl;
    }
    return 0;
}
输出:
"Nation" is part of "Internationalization"

 3、bind调用成员函数

#include <functional>
#include <algorithm>
#include <vector>
#include <iostream>
#include <string>

using namespace std;
using namespace std::placeholders;

class Person {
private:
    string name;
public:
    Person(const string& n):name(n) {}
    void print() const {
        cout << name << endl;
    }
    void print2 (const string& prefix) const {
        cout << prefix << name << endl;
    }
};

int main() {
    vector<Person> coll = {Person("Tick"), Person("Trick"), Person("Track")};

    for_each(coll.begin(), coll.end(), bind(&Person::print,_1));    //param.print()
    cout << endl;

    for_each(coll.begin(), coll.end(), bind(&Person::print2, _1, "Person: ")); //param.print2("Person: ")
    cout << endl;
    bind(&Person::print2, _1, "This is: ")(Person("nico")); // (Person("nico")).print2("This is: ")
    return 0;
}
输出:
Tick
Trick
Track

Person: Tick
Person: Trick
Person: Track

This is: nico

 也可以传递pointer object 或者smart pointer 给bind()

std::vector<Person*> cp;
std::for_each(cp.begin(), cp.end(), std::bind(&Person::print,
                                              std::placeholders::_1));

std::vector<std::shared_ptr<Person>> sp;
std::for_each(sp.begin(), sp.end(), std::bind(&Person::print,
                                              std::placeholders::_1));

4、mem_fn() Adapter

对于成员函数,可以改用mem_fn() adapter,就不在需要使用占位符表示调用者了。

std::for_each(coll.begin(), coll.end(), std::mem_fn(&Person::print));

如有额外的实参被传递给成员函数,mem_fn()就拿其中的第一实参作为调用者,其他实参当做成员函数的实参。

std::mem_fn(&Person::print)(n);                   // calls n.print()
std::mem_fn(&Person::print2)(n, "Person: ");      // calls n.print2("Person: ");

然而,如果要为Function object绑定额外的实参,还是必须使用bind()

std::for_each(coll.begin(), coll.end(),
              std::bind(std::mem_fn(&Person::print2),
                        std::placeholders::_1,
                        "Person: "));

5、绑定至数据成员

map<string, int> coll;
int sum = accumulate(coll.begin(), coll.end(), 
                     0,
                     std::bind(plus<int>(),
                               std::placeholders::_1,
                               std::bind(&map<string,int>::value_type::second,
                                         std::placeholders::_2)));

 bind(&map<string,int>::value_type::second, _2) 把每次调用这个predicate所传入的第二实参绑定为数据成员second。

6、adapter not1() 和 not2()

adapter not1() 和 not2() 几乎可被认为是过时的,他们唯一用途就是令预定义的Function object的意义相反,例如:

std::sort(coll.begin(), coll.end(),
          std::not2(std::less<int>())));

 这看起来比下面简单多了:

std::sort(coll.begin(), coll.end(),
          std::bind(std::logical_not<bool>(),
                    std::bind(std::less<int>(), _1, _2)));

然而实际中并没有not1()和not2()发挥的作用的地方,因为你可以轻松的选择另外一个预定义的Function object

std::sort(coll.begin(), coll.end(),
          std::greater_equal<int>());

请注意,not2()搭配less<>其实是错误的,<的相反是>=,不满足反对称条件,所以要么传递greater<int>(),要么传递bind(less<int>(), _2, _1)

7、function adapter 搭配用户自定义的Function object

#include <cmath>
#include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
#include <iterator>

using namespace std;
using namespace std::placeholders;

template <typename T1, typename T2>
struct fopow {
    T1 operator() (T1 base, T2 exp) const {
        return std::pow(base, exp);
    }
};

int main() {
    vector<int> coll = {1, 2, 3, 4, 5, 6, 7, 8, 9};
    transform(coll.begin(), coll.end(), 
               ostream_iterator<float>(cout," "),
               bind(fopow<float, int>(), 3, _1));
    cout << endl;
    transform(coll.begin(), coll.end(),
              ostream_iterator<float>(cout, " "),
              bind(fopow<float, int>(), _1, 3));
    cout << endl;
    return 0;
}
输出:
3 9 27 81 243 729 2187 6561 19683 
1 8 27 64 125 216 343 512 729

8、过时的Function adapter

 9、Lambda带有状态的Function object

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
    vector<int> coll = {1, 2, 3, 4, 5, 6, 7, 8};
    long sum = 0;
    for_each(coll.begin(), coll.end(), [&sum](int elem){
        sum += elem;
    });
    double w = static_cast<double>(sum) / static_cast<double>(coll.size());
    cout << "mean value: " << w << endl;
    return 0;
}
输出:
mean value: 4.5

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

基于FPGA的视频接口之高速IO(PCIE)

简介 相对于其他高速IO接口应用&#xff0c;PCIE协议有专门的的IP来进行操作&#xff0c;通过8对输入高速IO&#xff0c;以及输出高速IO&#xff0c;来实现PCIEX8功能。 原理框图 原理图 软件调用

Nginx首页修改及使用Nginx实现端口转发

按照我之前博客给的方法搭建好这样一个CTF靶场 但是呢它默认是在8000端口 如何直接访问IP地址或者域名就可以实现直接访问到靶场呢 我们需要将80端口的内容转发到8000&#xff0c;使用nginx实现端口转发功能 首先我们安装nginx&#xff1a; 安装工具和库 yum -y install gc…

《地理信息系统原理》笔记/期末复习资料(9. 网络地理信息系统)

目录 9. 网络地理信息系统 9.1. 概述 9.1.1. 网络GIS概念 9.1.2. 网络GIS体系结构 9.1.3. 网络GIS内容体系 9.2. 分布式网络GIS 9.2.1. 分布式网络GIS概念 9.2.2. 分布式主要技术 9.3. WebGIS 9.3.1. WebGIS概念 9.3.2. WebGIS分类与特点 9.3.3. WebGIS技术框架 9…

IDEA中的Postman!这款插件:免费,好用!

Postman是大家最常用的API调试工具&#xff0c;那么有没有一种方法可以不用手动写入接口到Postman&#xff0c;即可进行接口调试操作&#xff1f;今天给大家推荐一款IDEA插件&#xff1a;Apipost Helper&#xff0c;写完代码就可以调试接口并一键生成接口文档&#xff01;而且还…

电商早报 | 12月12日| 淘宝公布2023年度商品初选名单入围

淘宝公布2023年度商品初选名单&#xff1a;军大衣、酱香拿铁、熊猫周边入围 又一年临近收官&#xff0c;淘宝如期启动了“2023年度十大商品”评选。 12月11日&#xff0c;淘宝官方发布了初选入围名单&#xff0c;30件最具代表性的商品脱颖而出。据淘宝路边社介绍&#xff0c;…

系统架构设计师教程(三)信息系统基础知识

信息系统基础知识 3.1 信息系统概述3.1.1 信息系统的定义3.1.2 信息系统的发展3.1.3 信息系统的分类3.1.4 信息系统的生命周期3.1.5 信息系统建设原则3.1.6 信息系统开发方法 3.2 业务处理系统 (TPS)3.2.1 业务处理系统的概念3.2.2 业务处理系统的功能3.2.3 业务处理系统的特点…

互联网加竞赛 opencv 图像识别 指纹识别 - python

0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; 基于机器视觉的指纹识别系统 &#x1f947;学长这里给一个题目综合评分(每项满分5分) 难度系数&#xff1a;3分工作量&#xff1a;3分创新点&#xff1a;4分 该项目较为新颖&#xff0c;适…

Pearson、Spearman 相关性分析使用

介绍 Pearson 积差相关系数衡量了两个定量变量之间的线性相关程度。 用来衡量两个数据集的线性相关程度&#xff0c;仅当一个变量的变化与另一个变量的比例变化相关时&#xff0c;关系才是线性的。 Spearman等级相关系数则衡量分级定序变量之间的相关程度。斯皮尔曼相关系数不…

学习数据结构第一步(必看)——初识集合框架

一&#xff0c;学习数据结构前置知识 目录 一&#xff0c;学习数据结构前置知识 二&#xff0c;什么是数据结构&#xff1f; 1.什么是数据结构&#xff1f; 2.容器背后对应的数据结构 3.相关Java知识 4.什么是算法&#xff1f; 三&#xff0c;什么是集合&#xff1f; …

【详细解答】项目经VS产品经理,有什么区别?哪个更值得选择?

最近很多人咨询“项目经理跟产品经理该怎么选&#xff0c;我更适合哪个&#xff1f;”“项目经理跟产品经理哪个更有钱途 ”“项目经理转产品经理好转吗”等等&#xff0c;今天就一次性说清楚项目经理跟产品经理有什么区别&#xff0c;应该怎么选择。 不想看长篇大论的&#x…

区块链的可拓展性研究【03】扩容整理

为什么扩容&#xff1a;在layer1上&#xff0c;交易速度慢&#xff0c;燃料价格高 扩容的目的&#xff1a;在保证去中心化和安全性的前提下&#xff0c;提升交易速度&#xff0c;更快确定交易&#xff0c;提升交易吞吐量&#xff08;提升每秒交易量&#xff09; 目前方案有&…

Halcon参考手册语义分割和边缘提取知识总结

1.1 语义分割和边缘提取介绍 通过语义分割&#xff0c;我们使用深度学习(DL)网络将输入图像的每个像素分配给一个类。 图(1)语义分割示例 在图(1)中&#xff0c;输入图像的每个像素都被分配给一个类&#xff0c;但是苹果的三个不同实例和橘子的两个不同实例都不是可区分的对象…

C++STL的vector模拟实现

文章目录 前言成员变量成员函数构造函数push_backpop_backinserterase析构函数拷贝构造 前言 成员变量 namespace but {template<class T>class vector{public:typedef T* iterator;private:iterator _start;iterator _finish;iterator _end_of_storage;}; }我们之前实…

c/c++ malloc、calloc、realloc and free

malloc 需要头文件 #include<stdlib.h> void *malloc( size_t size ); malloc returns a void pointer to the allocated space, or NULL if there is insufficient memory available. To return a pointer to a type other than void, use a type cast on the return …

【算法题】单词接龙(js)

![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/7fcc5df3354742bd88dad28219f82bf8.png 用例&#xff1a; 输入&#xff1a; 0 6 word dd da dc dword d 输出&#xff1a; worddwordda 说明&#xff1a; 先确定起始单词word&#xff0c;再接以d开有的且长度最长…

Canal实时同步MySQL数据到ES

一、canal简介 canal主要用途是对MySQL数据库增量日志进行解析&#xff0c;提供增量数据的订阅和消费&#xff0c;简单说就是可以对MySQL的增量数据进行实时同步&#xff0c;支持同步到MySQL、Elasticsearch、HBase等数据存储中去。 早期阿里巴巴因为杭州和美国双机房部署&…

MATLAB运动学之蒙特卡罗法求积分与机器人工作域分析

蒙特卡罗法又叫做统计模拟法、随机抽样技术&#xff0c;是一种随机模拟方法以概率和统计理论方法为基础的一种计算方法&#xff0c;通俗来说是可以使用随机数来解决很多计算问题的一种方法&#xff0c;很直观简单&#xff0c;尤其对于一些求解积分无解的情况&#xff0c;非常好…

《Easy3d+Qt+VTK》学习

《Easy3dQtVTK》学习-1、编译与配置 一、编译二、配置注 一、编译 1、 资源下载&#xff1a;easy3d giuhub 2、解压缩 3、用qt打开CMakeLists.txt即可 4、点击项目&#xff0c;选择debug或者release&#xff0c;图中3处可自行选择&#xff0c;因为我的qt版本是6&#xff0c…

Linux上使用Python的requests库进行HTTP请求

在Linux上使用Python的requests库进行HTTP请求是一种非常方便和高效的方式。requests库是一个第三方库&#xff0c;用于发送HTTP请求并获取响应。下面是一个简单的示例&#xff0c;演示如何使用requests库发送GET请求并获取响应。 首先&#xff0c;你需要安装requests库。你可…

玩转大数据15:常用的分类算法和聚类算法

前言 分类算法和聚类算法是数据挖掘和机器学习中的两种常见方法。它们的主要区别在于处理数据的方式和目标。 分类算法是在已知类别标签的数据集上训练的&#xff0c;用于预测新的数据点的类别。聚类算法则是在没有任何类别标签的情况下&#xff0c;通过分析数据点之间的相似性…