當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ boost::algorithm::none_of_equal()用法及代碼示例


C++ Boost庫中的none_of_equal()函數位於標頭“ boost /algorithm /cxx11 /none_of.hpp”下,該標頭針對參數中傳遞的值測試序列中的所有元素,如果序列中的所有元素均不正確,則返回true等於傳遞的值。它接受一個序列和一個值,如果沒有元素與序列中的值相等,則返回true。

用法

bool none_of_equal ( InputIterator first, InputIterator last, const &value)
or
bool none_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/none_of.hpp> 
using namespace std; 
  
// Drivers code 
int main() 
{ 
  
    // Declares the sequence with 
    // 5 length and none elements as 1 
    // [1, 1, 1, 1, 1] 
    vector<int> c(5, 1); 
  
    // Run the function 
    bool ans 
        = boost::algorithm::none_of_equal(c, 1); 
  
    // Condition to check 
    if (ans == 1) 
        cout << "all not equal to 1"; 
    else
        cout << "all equals to 1"; 
    return 0; 
}
輸出:
all equals to 1

程序2:

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

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




相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 boost::algorithm::none_of_equal() in C++ library。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。