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


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


在C++ Boost库中的one_of_equal()函数位于标题“ boost /algorithm /cxx11 /one_of.hpp”下,该函数测试序列中的一个元素与所传递的值是否完全相同。它接受一个序列和一个值,如果序列中恰好一个元素与传递的值相同,则返回true。

用法

bool one_of_equal ( InputIterator first, InputIterator last, const &value)
or
bool one_of_equal ( const Range &R, const &value)



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

  • first:它指定输入迭代器到序列中的初始位置。
  • second:它指定输入迭代器到序列中的最终位置。
  • value:它指定一个值,该值将针对序列元素之一进行检查。
  • R:这是完整的序列。

返回值:如果序列中的元素之一恰好等于value,则该函数返回true,否则返回false。

下面是上述方法的实现:

程序1:

// C++ program to implement the 
// above mentioned function 
  
#include <bits/stdc++.h> 
#include <boost/algorithm/cxx11/one_of.hpp> 
using namespace std; 
  
// Drivers code 
int main() 
{ 
  
    // Declares the sequence with 
    int c[] = { 1, 2, 3 }; 
  
    // Run the function 
    bool ans = boost::algorithm::one_of_equal(c, 1); 
  
    // Condition to check 
    if (ans == 1) 
        cout << "exactly one element is 1"; 
    else
        cout << "exactly one element is not 1"; 
    return 0; 
}
输出:
exactly one element is 1

程序2:

// C++ program to implement the 
// above mentioned function 
  
#include <bits/stdc++.h> 
#include <boost/algorithm/cxx11/one_of.hpp> 
using namespace std; 
  
// Drivers code 
int main() 
{ 
  
    // Declares the sequence 
    int a[] = { 1, 2, 3, 6 }; 
  
    // Run the function 
    bool ans 
        = boost::algorithm::one_of_equal(a, a + 4, 4); 
  
    // Condition to check 
    if (ans == 1) 
        cout << "exactly one element is 4"; 
    else
        cout << "exactly one element is not 4"; 
    return 0; 
}
输出:
exactly one element is not 4

参考:https://www.boost.org/doc/libs/1_70_0/libs/algorithm/doc/html/the_boost_algorithm_library/CXX11/one_of.html




相关用法


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