c++11新增的一些便利的算法(转)

  c+11新增加了一些便利的算法,这些新增的算法使我们的代码写起来更简洁方便,这里仅仅列举一些常用的新增算法,算是做个总结,更多的新增算法读者可以参考http://en.cppreference.com/w/cpp/algorithm。

  算法库新增了三个用于判断的算法all_of、any_of和none_of:

template< class InputIt, class UnaryPredicate >
bool all_of( InputIt first, InputIt last, UnaryPredicate p );

template< class InputIt, class UnaryPredicate >
bool any_of( InputIt first, InputIt last, UnaryPredicate p );

template< class InputIt, class UnaryPredicate >
bool none_of( InputIt first, InputIt last, UnaryPredicate p );

  • all_of:检查区间[first, last)中是否所有的元素都满足一元判断式p,所有的元素都满足条件返回true,否则返回false。
  • any_of:检查区间[first, last)中是否至少有一个元素都满足一元判断式p,只要有一个元素满足条件就返回true,否则返回true。
  • none_of:检查区间[first, last)中是否所有的元素都不满足一元判断式p,所有的元素都不满足条件返回true,否则返回false。

下面是这几个算法的示例:

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
       vector<int> v = { 1, 3, 5, 7, 9 };
    auto isEven = [](int i){return i % 2 != 0;
       bool isallOdd = std::all_of(v.begin(), v.end(), isEven);
       if (isallOdd)
              cout << "all is odd" << endl;

       bool isNoneEven = std::none_of(v.begin(), v.end(), isEven);
       if (isNoneEven)
              cout << "none is even" << endl;

       vector<int> v1 = { 1, 3, 5, 7, 8, 9 };
       bool anyof = std::any_of(v1.begin(), v1.end(), isEven);
       if (anyof)
              cout << "at least one is even" << endl;
}

输出:

all is odd
none is odd
at least one is even

算法库的查找算法新增了一个find_if_not,它的含义和find_if是相反的,即查找不符合某个条件的元素,find_if也可以实现find_if_not的功能,只需要将判断式改为否定的判断式即可,现在新增了find_if_not之后,就不需要再写否定的判断式了,可读性也变得更好。下面是它的基本用法:

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

int main()
{
    vector<int> v = { 1, 3, 5, 7, 9,4 };
    auto isEven = [](int i){return i % 2 == 0;};
    auto firstEven = std::find_if(v.begin(), v.end(), isEven);
    if (firstEven!=v.end())
              cout << "the first even is " <<* firstEven << endl;

       //用find_if来查找奇数则需要重新写一个否定含义的判断式
  auto isNotEven = [](int i){return i % 2 != 0;};
  auto firstOdd = std::find_if(v.begin(), v.end(),isNotEven);

       if (firstOdd!=v.end())
              cout << "the first odd is " <<* firstOdd << endl;

       //用find_if_not来查找奇数则无需新定义判断式

       auto odd = std::find_if_not(v.begin(), v.end(), isEven);
       if (odd!=v.end())
              cout << "the first odd is " <<* odd << endl;
}

将输出:

the first even is 4
the first odd is 1
the first odd is 1

  可以看到使用find_if_not不需要再定义新的否定含义的判断式了,更简便了。

  算法库还增加了一个copy_if算法,它相比原来的copy算法多了一个判断式,用起来更方便了,下面是它的基本用法:

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

int main()
{
       vector<int> v = { 1, 3, 5, 7, 9, 4 };
       std::vector<int> v1(v.size());
    //根据条件拷贝
    auto it = std::copy_if(v.begin(), v.end(), v1.begin(), [](int i){return i%2!=0;});
    //缩减vector到合适大小
      v1.resize(std::distance(v1.begin(),it));
       for(int i : v1)
       {
              cout<<i<<" ";
       }

       cout<<endl;
}    

算法库新增了iota用来方便的生成有序序列,比如我们需要一个定长数组,这个数组中的元素都是在某一个数值的基础之上递增的,那么用iota可以很方便的生成这个数组了。下面是它的基本用法:

#include <numeric>
#include <array>
#include <vector>
#include <iostream>
using namespace std;

int main()
{
vector<int> v(4) ;
//循环遍历赋值来初始化数组
//for(int i=1; i<=4; i++)
//{
//    v.push_back(i);
//}

//直接通过iota初始化数组,更简洁
    std::iota(v.begin(), v.end(), 1);
    for(auto n: v) {
        cout << n << ‘ ‘;
    }
    cout << endl;

    std::array<int, 4> array;
    std::iota(array.begin(), array.end(), 1);
    for(auto n: array) {
        cout << n << ‘ ‘;
    }
    std::cout << endl;
}

将输出:

1 2 3 4
1 2 3 4

  可以看到使用iota比遍历赋值来初始化数组更简洁,需要注意的是iota初始化的序列需要指定大小,如果上面的代码中:vector<int> v(4) ;没有指定初始化大小为4的话,则输出为空。

算法库还新增了一个同时获取最大值和最小值的算法minmax_element,这样我们如果想获取最大值和最小值的时候就不用分别调用max_element和max_element算法了,用起来会更方便,minmax_element会将最小值和最大值的迭代器放到一个pair中返回,下面是它的基本用法:

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

int main() {
    // your code goes here
    vector<int> v = { 1, 2, 5, 7, 9, 4 };
    auto result = minmax_element(v.begin(), v.end());

    cout<<*result.first<<" "<<*result.second<<endl;

    return 0;
}

将输出:

1 9

算法库新增了is_ sorted和is_ sorted_until算法,is_sort用来判断某个序列是否是排好序的,is_sort_until则用来返回序列中前面已经排好序的部分序列。下面是它们的基本用法:

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

int main() {
    vector<int> v = { 1, 2, 5, 7, 9, 4 };
    auto pos = is_sorted_until(v.begin(), v.end());

    for(auto it=v.begin(); it!=pos; ++it)
    {
        cout<<*it<< " ";
    }
    cout<<endl;

    bool is_sort = is_sorted(v.begin(), v.end());
    cout<< is_sort<<endl;
    return 0;
}

将输出:

1 2 5 7 9
0

总结:这些新增的算法让我们用起来更加简便,也增强了代码的可读性。

时间: 2024-10-26 10:56:24

c++11新增的一些便利的算法(转)的相关文章

c++11新增的一些便利的算法

c++11新增加了一些便利的算法,这些新增的算法使我们的代码写起来更简洁方便,这里仅仅列举一些常用的新增算法,算是做个总结,更多的新增算法读者可以参考http://en.cppreference.com/w/cpp/algorithm. 算法库新增了三个用于判断的算法all_of.any_of和none_of: template< class InputIt, class UnaryPredicate > bool all_of( InputIt first, InputIt last, Un

C++11新增for循环遍历方法

记录C++11新增for循环遍历方法 1.基于迭代器的for循环: for_each位于std命名空间下,我们可以看到其定义如下: inline _Fn1 for_each(_InIt _First, _InIt _Last, _Fn1 _Func) { // perform function for each element _DEBUG_RANGE(_First, _Last); _DEBUG_POINTER(_Func); _For_each(_Unchecked(_First), _Un

Citrix PVS 7.11新增功能

Provisioning Services  7.11中提供以下新增功能: 1.SQL Server Always On 多子网故障转移 2.PVS 支持 CIS 问题报告 3.AlwaysOn 跟踪 4.对 Windows Server 2016的支持 一.SQL Server Always On 多子网故障转移 在多子网环境中,PVS 现在支持 SQL Server Always On 故障转移.这个功能对于我们来说有什么用呢?其实这个功能的好处就是:对于大型企业环境的部署,我们可以采用这个

11种常见的AD滤波算法

第 1 种方法 限幅滤波法(又称程序判断滤波法) A 方法 根据经验判断,确定两次采样允许的最大偏差值(设为 A)每次检测到新值时判断:如果本次值与上次值之差<=A,则本次值有效如果本次值与上次值之差>A,则本次值无效,放弃本次值,用上次值代替本次值 B 优点 能有效克服因偶然因素引起的脉冲干扰 C 缺点 无法抑制那种周期性的干扰平滑度差 D 实例程序 1: /* A 值可根据实际情况调整value 为有效值,new_value 为当前采样值滤波程序返回有效的实际值 */ 2: #define

11选5专家投注研究算法

根据一个多年玩彩的专家,研究出来的前三算法,帮他做了一个APP,据他说,此前他多次中得千元奖. 需要的可以买月卡,10元一个,效果好,请继续购买. QQ群:623394081 原文地址:https://www.cnblogs.com/plug/p/8976172.html

auto 和 decltype (C++11 新增)

红色字体为个人推断,可信度自辨. 蓝色字体为重点. auto类型说明符:使用auto时,编译器会分析表达式,并自动推算出变量所属类型.*auto变量必须有初值 原理:编译器通过 初值 来判断auto变量所属类型.具体匹配规则不清.但整形和浮点推断为int和double. 需要注意: 1)auto sz = 0, pi = 3.14;  // 错误.sz和pi的类型不一致. decltype类型指示符:得到表达式对应类型. 使用时机: 1)需要表达式对应类型,但不需要表达式的值. 2)需要函数返回

C++11新特性应用--介绍几个新增的便利算法(用于分区的几个算法)

今天继续. C++11新增的关于Non-modifying sequence operations和Modifying sequence operations的算法已经写了,详细信息见之前的博客. 下面开始C++11新增的关于Partitions的算法: Partitions:即分区的意思. 很多人可能还不熟悉partition,所以先说一说partition算法,需要说明的是这不是C++11新增的内容.但为了更方便大家理解,还是先写一写std::partition. std::partitio

C++11新特性应用--介绍几个新增的便利算法(更改容器中元素顺序的算法)

昨天罗列了C++11中新增的几个算法,包括 find_if_not.all_of.any_of.none_of四个算法,这四个算法的共同点就是Non-modifying sequence operations. 所以,今天就来八一八C++11中新增的算法,而这些算法的特点是:Modifying sequence operations. copy算法我们很熟悉,这里介绍一下C++11新增的copy_n. copy_n 原型: template <class InputIterator, class

C++11新特性应用--介绍几个新增的便利算法(不更改容器中元素顺序的算法)

总所周知,C++ STL中有个头文件,名为algorithm,即算法的意思. The header<algorithm>defines a collection of functions especially designed to be used on ranges of elements. 所以,要八一八这个头文件中C++11新增的几个算法,今天主要描述的几个算法不改变容器中元素的顺序. 这里还要啰嗦一句,使用stl算法时,如果与lambda表达式组合使用,那么代码会更加简洁. find_