在本文中,我们将讨论成对向量中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:
CPP
// C++ program to demonstrate lower_bound()
// and upper_bound() in Vectors of Pairs
#include
using namespace std;
// Function to implement lower_bound()
void findLowerBound(vector >& arr,
pair& p)
{
// Given iterator points to the
// lower_bound() of given pair
auto low = lower_bound(arr.begin(), arr.end(), p);
cout << "lower_bound() for {2, 5}"
<< " is at index: " << low - arr.begin() << endl;
}
// Function to implement upper_bound()
void findUpperBound(vector >& arr,
pair& p)
{
// Given iterator points to the
// upper_bound() of given pair
auto up = upper_bound(arr.begin(), arr.end(), p);
cout << "upper_bound() for {2, 5}"
<< " is at index: " << up - arr.begin() << endl;
}
// Driver Code
int main()
{
// Given sorted vector of Pairs
vector > arr;
arr = { { 1, 3 }, { 1, 7 }, { 2, 4 },
{ 2, 5 }, { 3, 8 }, { 8, 6 } };
// Given pair {2, 5}
pair p = { 2, 5 };
// Function Call to find lower_bound
// of pair p in arr
findLowerBound(arr, p);
// Function Call to find upper_bound
// of pair p in arr
findUpperBound(arr, p);
return 0;
}
输出
lower_bound() for {2, 5} is at index: 3
upper_bound() for {2, 5} is at index: 4
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。