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