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


C++ Algorithm binary_search()用法及代码示例


C++ 算法 binary_search() 函数用于检查 [first, last) 范围内的元素是否等于 val(或二元谓词),否则为 false。

  • 范围 [first, last) 必须满足以下所有条件:
    • 相对于 element < val 或 comp (element, val) 进行分区。
    • 根据 !(val < element) 或 !comp(value, element) 进行分区
    • 对于所有元素,如果 element < val 或 comp (element, val) 为真,则 !(val < element) 或 !comp(val, element) 也为真。
  • 第一个版本使用 operator< 来比较元素,第二个版本使用给定的比较函数,即 comp。

用法

default (1)       template <class ForwardIterator, class T>
                        bool binary_search (ForwardIterator first, ForwardIterator last,
                             const T& val);

custom (2)      template <class ForwardIterator, class T, class Compare>
                       bool binary_search (ForwardIterator first, ForwardIterator last,
                             const T& val, Compare comp);

参数

first:指向要搜索的范围中的第一个元素的前向迭代器。

last:指向要搜索范围中过去最后一个元素的前向迭代器。

comp: 一个用户定义的二元谓词函数,它接受两个参数,如果两个参数按顺序返回真,否则返回假。它遵循严格的弱排序来对元素进行排序。

val: 用于比较范围内元素的上限值。

返回值

如果找到等效于 val 的元素,则返回 true,否则返回 false。

复杂度

平均而言,复杂性是第一个和最后一个之间距离的对数:最多执行 log2 (N) + 2 次元素比较,其中 N = last - first。

数据竞争

访问范围 [first, last) 中的对象。

异常

如果元素比较或迭代器上的操作引发异常,则此函数将引发异常。

请注意,无效参数会导致未定义的行为。

例子1

让我们看一个简单的例子来演示 binary_search() 的使用:

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
  vector<int> v = {3, 1, 4, 6, 5};

  if (binary_search(v.begin(), v.end(), 4)) {
    cout << "4 found" << endl;
  }
  else {
    cout << "4 not found" << endl;
  }
  
  return 0;
}

输出:

4 found

例子2

让我们看另一个简单的例子:

#include <iostream>     // std::cout
#include <algorithm>    // std::binary_search, std::sort
#include <vector>       // std::vector

using namespace std;

bool myfunction (int i,int j) { return (i<j); }

int main () {
  int myints[] = {1,2,3,4,5,4,3,2,1};
  vector<int> v(myints,myints+9);                         // 1 2 3 4 5 4 3 2 1

  // using default comparison:
  sort (v.begin(), v.end());

  cout << "looking for a 3... ";
  if (binary_search (v.begin(), v.end(), 3))
    cout << "found!\n"; else cout << "not found.\n";

  // using myfunction as comp:
  sort (v.begin(), v.end(), myfunction);

  cout << "looking for a 6... ";
  if (binary_search (v.begin(), v.end(), 6, myfunction))
    cout << "found!\n"; else std::cout << "not found.\n";

  return 0;
}

输出:

looking for a 3... found!
looking for a 6... not found.

例子3

让我们看另一个使用比较函数比较元素的简单示例:

#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
 
int main()
{
  int a[] = {1, 2, 3, 4, 5, 6, 7, 9, 10};
  vector<int> v(a, a+9);
  cout <<"\nHere are the values in the vector:\n";
  for (vector<int>::size_type i=0; i<v.size(); i++)
    cout <<v.at(i)<<" ";
 
  if (binary_search(v.begin(), v.end(), 3))
    cout <<"\nThe value 3 was found.";
  else
    cout <<"\nThe value 3 was not found.";
 
  if (binary_search(v.begin(), v.end(), 8))
    cout <<"\nThe value 8 was found.";
  else
    cout <<"\nThe value 8 was not found.";
 
  return 0;
}

输出:

Here are the values in the vector:
1 2 3 4 5 6 7 9 10 
The value 3 was found.
The value 8 was not found.

示例 4

让我们看另一个简单的例子:

#include <iostream>
#include <algorithm>
#include <vector>
#include <functional>  
#include <iomanip>     
using namespace std;
 
void print(vector <int> vs)
{   
    vector <int>::iterator i;
    for(i = vs.begin(); i != vs.end(); i++)
    {
        cout << left << setw(2) << *i;
    }
    cout << endl;
}
 
int main () {
    int arr[] = {1, 5, 2, 9, 8, 4, 3, 7, 6};
    int alen = sizeof(arr) / sizeof(int);
    vector <int> v(arr, arr + alen); 
 
    sort (v.begin(), v.end());
    cout << "Sorted vector elements:";
    print(v);
    // Searching without using predicate
    cout << "Searching for 4:";
    if (binary_search (v.begin(), v.end(), 4))
        cout << "found!" << endl;
    else
        cout << "not found." << endl;
    // Searching using predicate
    cout << "Searching for element greater than 9:";
    if (binary_search(v.begin(), v.end(), 9, greater<int>()))
        cout << "found!" << endl;
    else
        cout << "not found." << endl;
    return 0;
}

输出:

Sorted vector elements:1 2 3 4 5 6 7 8 9 
Searching for 4:found!
Searching for element greater than 9:not found.





相关用法


注:本文由纯净天空筛选整理自 C++ Algorithm binary_search()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。