📌  相关文章
📜  C++中成对数组中lower_bound()和upper_bound()的实现

📅  最后修改于: 2021-05-17 19:43:53             🧑  作者: Mango

在本文中,我们将讨论成对数组中lower_bound()和upper_bound()的实现。

  • lower_bound():它返回一个迭代器,该迭代器指向[first,last)范围内的第一个元素,该元素的值大于或等于给定值“ val” 。但是在成对数组中, pair(x,y)的lower_bound()将返回一个迭代器,该迭代器指向第一个值大于或等于x且第二个值大于等于y的对的位置
    如果不满足上述条件,则将迭代器返回到成对数组之外的索引。
  • upper_bound():它返回一个迭代器,该迭代器指向[first,last)范围内的第一个元素,该元素的值大于给定值“ val” 。但是在成对数组中, pair(x,y)的upper_bound()将返回一个迭代器,该迭代器指向第一个值大于x而第二个值大于y的对的位置
    如果不满足上述条件,则将迭代器返回到成对数组之外的索引。

句法:

参数:成对数组中的函数lower_bound()upper_bound()接受以下参数:

  1. array_name&array_size:数组的名称和大小,表示[start,end)之间的间隔。
  2. value:在范围内搜索的lower_bound()/ upper_bound()的值。
  3. 比较器功能二进制函数,接受两个参数作为输入,即数组中的一对类型为元素的元素,第二个为必须找到lower_bound()/ upper_bound()的值并返回一个布尔值。

返回类型:返回一个迭代器,该迭代器指向其第一个参数大于或等于该值的数组的第一个元素。

下面是演示成对数组中的lower_bound()和upper_bound()的程序:

C++
// C++ program to demonstrate lower_bound()
// and upper_bound() in Array of Pairs
#include 
using namespace std;
  
// Function to implement lower_bound()
void findLowerBound(pair arr[],
                    pair& p,
                    int n)
{
    // Given iterator points to the
    // lower_bound() of given pair
    auto low = lower_bound(arr, arr + n, p);
  
    cout << "lower_bound() for {2, 5}"
         << " is at index: "
         << low - arr << endl;
}
  
// Function to implement upper_bound()
void findUpperBound(pair arr[],
                    pair& p,
                    int n)
{
    // Given iterator points to the
    // lower_bound() of given pair
    auto up = upper_bound(arr, arr + n, p);
  
    cout << "upper_bound() for {2, 5}"
         << " is at index: "
         << up - arr << endl;
}
  
// Driver Code
int main()
{
    // Given sorted array of Pairs
    pair arr[]
        = { { 1, 3 }, { 1, 7 }, { 2, 4 },
            { 2, 5 }, { 3, 8 }, { 8, 6 } };
  
    // Given pair {2, 5}
    pair p = { 2, 5 };
  
    // Size of array
    int n = sizeof(arr) / sizeof(arr[0]);
  
    // Function Call to find lower_bound
    // of pair p in arr
    findLowerBound(arr, p, n);
  
    // Function Call to find upper_bound
    // of pair p in arr
    findUpperBound(arr, p, n);
    return 0;
}


输出:
lower_bound() for {2, 5} is at index: 3
upper_bound() for {2, 5} is at index: 4
想要从精选的最佳视频中学习和练习问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”