当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ boost::algorithm::equal()用法及代码示例


在标头“ boost /algorithm /cxx11 /equal.hpp”测试下的C++ Boost库中的equal()函数可以查看两个序列是否包含相等的值。它返回一个布尔值,该值确定两个序列是否相同。

用法

bool equal ( InputIterator1 first1, InputIterator1 second1,
                  InputIterator2 first2, InputIterator2 second2 )
or 
bool equal ( InputIterator1 first1, InputIterator1 second1,
             InputIterator2 first2, InputIterator2 second2, 
             BinaryPredicate pred )

参数:该函数接受如下所述的参数:



  • first1:它指定输入迭代器到第一个序列中的初始位置。
  • second1:它指定输入迭代器到第一个序列中的最终位置。
    • first2:它指定输入迭代器到第二个序列中的初始位置。
    • second2:它指定输入迭代器到第二个序列的最终位置。
    • p:如果指定,则指定比较谓词。

    返回值:如果两个序列相同,则该函数返回true,否则返回false。

    Note:以上函数在C++ 14及更高版本上运行。

    Program-1

    // C++ program to implement the 
    // above mentioned function 
      
    #include <bits/stdc++.h> 
    #include <boost/algorithm/cxx14/equal.hpp> 
    using namespace std; 
      
    // Drivers code 
    int main() 
    { 
      
        // Declares the sequences 
        int a[] = { 1, 2, 5, 6, 8 }; 
      
        int b[] = { 1, 2, 5, 6, 8 }; 
      
        // Run the function 
        bool ans 
            = boost::algorithm::equal(a, a + 5, b, b + 5); 
      
        // Condition to check 
        if (ans == 1) 
            cout << "Sequence1 and Sequence2 are equal"; 
        else
            cout << "Sequence1 and Sequence2 are not equal"; 
        return 0; 
    }
    输出:
    Sequence1 and Sequence2 are equal
    

    Program-2

    // C++ program to implement the 
    // above mentioned function 
      
    #include <bits/stdc++.h> 
    #include <boost/algorithm/cxx14/equal.hpp> 
    using namespace std; 
      
    // Drivers code 
    int main() 
    { 
      
        // Declares the sequences 
        int a[] = { 1, 2, 5, 6, 8 }; 
      
        int b[] = { 1, 2, 5 }; 
      
        // Run the function 
        bool ans 
            = boost::algorithm::equal(a, a + 5, b, b + 5); 
      
        // Condition to check 
        if (ans == 1) 
            cout << "Sequence1 and Sequence2 are equal"; 
        else
            cout << "Sequence1 and Sequence2 are not equal"; 
        return 0; 
    }
    输出:
    Sequence1 and Sequence2 are not equal
    

    Reference:https://www.boost.org/doc/libs/1_70_0/libs/algorithm/doc/html/algorithm/CXX14.html#the_boost_algorithm_library.CXX14.equal




相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 boost::algorithm::equal() in C++ library。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。