定制操作


 #include <iostream>
 #include <string>
 #include <vector>
 #include <algorithm>
 #include <numeric>
 #include <list>
 using namespace std;

 template <typename Sequence>
 inline ostream& println(Sequence const& seq)
 {
     for (auto const& elem : seq)
         cout << elem << " ";
     cout << endl;
     return cout;
 }

 inline bool is_shorter(std::string const& lhs, std::string const& rhs)
 {
     return  lhs.size() < rhs.size();
 }

 void elimdups(vector<string> &vs)
 {
     sort(vs.begin(), vs.end());
     auto new_end = unique(vs.begin(), vs.end());
     vs.erase(new_end, vs.end());
 }

 int main()
 {
     vector<", "Hi", "alan", "wang" };
     elimdups(v);
     stable_sort(v.begin(), v.end(), is_shorter);
     cout << "ex10.11 :\n";
     println(v);
     system("pause");
     ;
 }

输出结果:

Exercise 10.14:


 int main()
 {
     auto sum = [](int a, int b) {return a + b; };
     cout << sum(, ) << endl;
     ;
 }

Exercise 10.16

 #include <iostream>
 #include <string>
 #include <vector>
 #include <algorithm>
 using namespace std;

 void elimdups(vector<string> &vs)
 {
     sort(vs.begin(), vs.end());
     for (auto c : vs)
         cout << c << " ";
     cout << endl;

     auto new_end = unique(vs.begin(), vs.end());
     vs.erase(new_end, vs.end());
     for (auto c : vs)
         cout << c << " ";
     cout << endl;

 }

 void biggies(vector<string> &vs, size_t sz)
 {
     elimdups(vs);
     stable_sort(vs.begin(), vs.end(), [](string const& lhs, string const& rhs) {
         return lhs.size() < rhs.size(); });

     auto wc = find_if(vs.begin(), vs.end(), [sz](string const& s) {
         return s.size() >= sz; });

     for_each(wc, vs.end(), [](const string &s) {
         cout << s << " ";
     });
 }

 int main()
 {
     vector<string> v{
         ","hi~", "alan", "alan", "cp"
     };
     cout << "ex10.16: " << endl;
     biggies(v, );
     cout << endl;
     system("pause");
     ;
 }

输出结果:

Exercise 10.18、10.19

 #include <iostream>
 #include <string>
 #include <vector>
 #include <algorithm>
 using namespace std;

 // from ex 10.9
 void elimdups(vector<string> &vs)
 {
     sort(vs.begin(), vs.end());
     auto new_end = unique(vs.begin(), vs.end());
     vs.erase(new_end, vs.end());
     for (auto it = vs.cbegin(); it != vs.end(); ++it)
         cout << *it << " ";
     cout << endl;
 }

 // ex10.18
 void biggies_partition(vector<string> &vs, size_t sz)
 {
     elimdups(vs);
     auto pivot = partition(vs.begin(), vs.end(), [sz](const string &s) {
         return s.size() >= sz; }
     );

     for (auto it = vs.cbegin(); it != pivot; ++it)
         cout << *it << " ";

 }

 // ex10.19
 void biggies_stable_partition(vector<string> &vs, std::size_t sz)
 {
     elimdups(vs);

     auto pivot = stable_partition(vs.begin(), vs.end(), [sz](const string& s) {
         return s.size() >= sz; });

     for (auto it = vs.cbegin(); it != pivot; ++it)
         cout << *it << " ";
 }

 int main()
 {
     // ex10.18
     vector<string> v{
         "the", "quick", "red", "fox", "jumps", "over", "the", "slow", "red", "turtle"
     };

     cout << "ex10.18: ";
     vector<string> v1(v);
     biggies_partition(v1, );
     cout << endl;

     // ex10.19
     cout << "ex10.19: ";
     vector<std::string> v2(v);
     biggies_stable_partition(v2, );
     cout << endl;
     system("pause");
     ;
 }

输出结果:

参数绑定

Exercise 10.22:

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

 using namespace std;
 using namespace std::placeholders;

 bool isLesserThanOrEqualTo6(const string &s, string::size_type sz)
 {
     return s.size() <= sz;
 }

 int main()
 {
     vector<string> authors{ "Mooophy", "pezy", "Queequeg90", "shbling", "evan617" };
     cout << count_if(authors.cbegin(), authors.cend(), bind(isLesserThanOrEqualTo6, _1, )) << endl;
     system("pause");
     ;
 }

Exercise 10.24:

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

using namespace std;
using namespace std::placeholders;

auto check_size(string const& str, size_t sz)
{
    return str.size() < sz;
}

int main()
{
    vector<, , , , , , ,  };
    ");
    auto result = find_if(vec.begin(), vec.end(), bind(check_size, str, _1));
    if (result != vec.end())
        cout << *result << endl;
    else
        cout << "Not found" << endl;
    system("pause");
    ;
}
#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>

using namespace std;
using namespace std::placeholders;

auto check_size(string const& str, size_t sz)
{
    return str.size() < sz;
}

int main()
{
    vector<int> vec{ 0, 1, 2, 3, 4, 5, 6, 7 };
    string str("123456");
    auto result = find_if(vec.begin(), vec.end(), bind(check_size, str, _1));
    if (result != vec.end())
        cout << *result << endl;
    else
        cout << "Not found" << endl;
    system("pause");
    return 0;
}

 

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

using namespace std;
using namespace std::placeholders;

auto check_size(string const& str, size_t sz)
{
    return str.size() < sz;
}

int main()
{
    vector<int> vec{ 0, 1, 2, 3, 4, 5, 6, 7 };
    string str("123456");
    auto result = find_if(vec.begin(), vec.end(), bind(check_size, str, _1));
    if (result != vec.end())
        cout << *result << endl;
    else
        cout << "Not found" << endl;
    system("pause");
    return 0;
}

  

 

【C++ Primer | 07】泛型算法的更多相关文章

  1. c++ primer 11 泛型算法

    使用泛型算法必须包含头文件#inlucde <algorithm> 标准库还定义一组泛化的算术算法,其命名习惯与泛型算法相同,包含头文件#include <numeric> f ...

  2. C++ Primer : 第十章 : 泛型算法 之 只读、写和排序算法

    大多数算法都定义在<algorithm>头文件里,而标准库还在头文件<numeric>里定义了一组数值泛型算法,比如accumulate. ●  find算法,算法接受一对迭代 ...

  3. C++ Primer 5th 第10章 泛型算法

    练习10.1:头文件algorithm中定义了一个名为count的函数,它类似find,接受一对迭代器和一个值作为参数.count返回给定值在序列中出现的次数.编写程序,读取int序列存入vector ...

  4. C++ Primer 读书笔记:第11章 泛型算法

    第11章 泛型算法 1.概述 泛型算法依赖于迭代器,而不是依赖容器,需要指定作用的区间,即[开始,结束),表示的区间,如上所示 此外还需要元素是可比的,如果元素本身是不可比的,那么可以自己定义比较函数 ...

  5. 【足迹C++primer】30、概要(泛型算法)

    概要(泛型算法) 大多数算法的头文件中定义algorithm在. 标准库也是第一个文件numeric它定义了一套通用算法. #include<iostream> #include<n ...

  6. 【C++ Primer | 07】常用算法

    第一部分 常用泛型算法: find(beg, end, val); equal(beg1, end1, beg2); fill(beg, end, val); fill_n(beg, cnt, val ...

  7. [C++ Primer] : 第10章: 泛型算法

    概述 泛型算法: 称它们为"算法", 是因为它们实现了一些经典算法的公共接口, 如搜索和排序; 称它们是"泛型的", 是因为它们可以用于不同类型的元素和多种容器 ...

  8. C++ Primer 学习笔记_45_STL实践与分析(19)--泛型算法的结构

    STL实践与分析 --泛型算法的结构 引言: 正如全部的容器都建立在一致的设计模式上一样,算法也具有共同的设计基础. 算法最主要的性质是须要使用的迭代器种类.全部算法都指定了它的每一个迭代器形參可使用 ...

  9. C++ Primer笔记6_STL之泛型算法

    1.泛型算法: 大多数算法定义在头文件algorithm中.标准库还在头文件numeric中定义了一组数值泛型算法 仅仅读算法: 举例: find函数用于找出容器中一个特定的值,有三个參数 int v ...

  10. C++ 泛型算法

    <C++ Primer 4th>读书笔记 标准容器(the standard container)定义了很少的操作.标准库并没有为每种容器类型都定义实现这些操作的成员函数,而是定义了一组泛 ...

随机推荐

  1. Android SpannableString实现TextView的点击事件

    最近项目中遇到一个问题,就是一段文字中股票可点击并跳到股票详情,只记得SpannableString可以实现富文本功能,但并不知道可实现的富文本有点击功能,就开始借助万能搜索引擎,结果不出意料,的确有 ...

  2. canves绘制北京地铁线路图,包括线路绘制,优先路线,单路径选择。

    canves绘制北京地铁线路图,包括线路绘制,优先路线,单路径选择. 即将推出,后台涵盖各种语言,php,C#,java,nodejs等.

  3. mvc5怎么给所有action都设置几个公用的ViewBag

    最近开发项目中遇到这样的问题,因为有多个同步的页面,所以需要在多个同步页面上有相同的值返回回来,经过一系列的思维,我们把思维整理出来. public ActionResult Index() { Vi ...

  4. 项目中常用的SQL语句(SQL SERVER2008R2专版)

    1.exists 关键字的使用 /****** Script for SelectTopNRows command from SSMS ******/ SELECT [RoleId] ,[RoleOr ...

  5. 2018 Multi-University Training Contest 1 杭电多校第一场

    抱着可能杭电的多校1比牛客的多校1更恐怖的想法 看到三道签到题 幸福的都快哭出来了好吗 1001  Maximum Multiple(hdoj 6298) 链接:http://acm.hdu.edu. ...

  6. QML 从入门到放弃 第二卷

    第二卷如何更快速的放弃,注重的是C++和QML的交互 <1>记事本.. (1) 先测试下不在QML创建C++对象,仅仅在main.cpp添加一个属性函数供调用. 注意只使用槽函数来做到. ...

  7. 移植busybox构建最小根文件系统

    Busybox:瑞士军刀,里面装有很多小命令. STEP 1:构建目录结构  创建根文件系统目录,主要包括以下目录/dev  /etc /lib  /usr  /var /proc /tmp /hom ...

  8. 网页块元素定位建议使用的xpath方式

    取上图的新手上路文字 使用xpath "//div[@class='pbm mbm bbda cl']//li[contains(string(),'用户组')]/span/a/text() ...

  9. MATLAB GUI对话框设计

    原文地址:http://blog.csdn.net/shuziluoji1988/article/details/8532982 1.公共对话框: 公共对话框是利用windows资源的对话框,包括文件 ...

  10. hibernate框架学习第二天:核心API、工具类、事务、查询、方言、主键生成策略等

    核心API Configuration 描述的是一个封装所有配置信息的对象 1.加载hibernate.properties(非主流,早期) Configuration conf = new Conf ...