// C++ program to demonstrate lower_bound()
// and upper_bound() in Array of Pairs
#include <bits/stdc++.h>
using namespace std;
// Function to implement lower_bound()
void findLowerBound(pair<int, int> arr[],
pair<int, int>& 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<int, int> arr[],
pair<int, int>& 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<int, int> arr[]
= { { 1, 3 }, { 1, 7 }, { 2, 4 },
{ 2, 5 }, { 3, 8 }, { 8, 6 } };
// Given pair {2, 5}
pair<int, int> 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;
}