在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
相關用法
- C++ boost::split用法及代碼示例
- C++ boost::algorithm::none_of()用法及代碼示例
- C++ boost::algorithm::is_partitioned()用法及代碼示例
- C++ boost::algorithm::clamp()用法及代碼示例
- C++ boost::algorithm::equal()用法及代碼示例
- C++ boost::algorithm::any_of()用法及代碼示例
- C++ boost::algorithm::none_of_equal()用法及代碼示例
- C++ boost::algorithm::all_of()用法及代碼示例
- C++ boost::algorithm::all_of_equal()用法及代碼示例
- C++ boost::algorithm::one_of()用法及代碼示例
- C++ boost::algorithm::is_sorted()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 boost::algorithm::one_of_equal() in C++ library。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。