Implementation of lower_bound and upper_bound on Set of Pairs in C++
Last Updated :
15 Jul, 2025
Prerequisite: set lower_bound() function in C++ STL,
set upper_bound() function in C++ STL
lower_bound() returns an iterator pointing to the first element in the range
[first, last) which has a value greater than or equals to the given value
"val". But in set of Pairs
lower_bound() for
pair(x, y) will return an iterator pointing to the position of pair whose the first value is greater than or equals
x.
If first values are same, then it will return an iterator pointing to the position of pair whose the second value is greater than or equals
y.
If the above-mentioned criteria are not met, then it returns an iterator which points to end of the set (next to the last pair in set).
Syntax: There are two ways to use lower_bound():
setName.lower_bound({a, b})
lower_bound(setName.begin(), setName.end(), pair(a, b))
upper_bound() returns an iterator pointing to the first element in the range
[first, last) which has a value greater than the given value
"val". But in set of Pairs
upper_bound() for
pair(x, y) will return an iterator pointing to the position of pair whose the first value is greater than
x.
If first values are same, then it will return an iterator pointing to the position of pair whose the second value is greater than
y.
If the above-mentioned criteria are not met, then it returns an iterator which points to end of the set (next to the last pair in set).
Syntax: There are two ways to use upper_bound() with Set:
setName.upper_bound({a, b})
upper_bound(setName.begin(), setName.end(), pair(a, b))
Below is the program to demonstrate
lower_bound() and upper_bound() in
set of pairs:
CPP
// C++ program to demonstrate lower_bound()
// and upper_bound() in set of Pairs
#include <bits/stdc++.h>
using namespace std;
// Function to implement lower_bound()
void findLowerBound(
set<pair<int, int> >& arr,
pair<int, int>& p)
{
// Given iterator points to the
// lower_bound() of given pair
auto low = lower_bound(arr.begin(),
arr.end(), p);
cout << "lower_bound() for {1, 2}"
<< " is: {" << (*low).first << ", "
<< (*low).second << "}" << endl;
}
// Function to implement upper_bound()
void findUpperBound(
set<pair<int, int> >& arr,
pair<int, int>& p)
{
// Given iterator points to the
// lower_bound() of given pair
auto up = upper_bound(arr.begin(),
arr.end(), p);
cout << "upper_bound() for {1, 2}"
<< " is: {" << (*up).first << ", "
<< (*up).second << "}" << endl;
}
// Driver Code
int main()
{
// Given sorted vector of Pairs
set<pair<int, int> > s;
// Insert pairs in set
s.insert(make_pair(1, 2));
s.insert(make_pair(2, 4));
s.insert(make_pair(3, 7));
s.insert(make_pair(8, 9));
// Given pair { 1, 2 }
pair<int, int> p = { 1, 2 };
// Function Call to find lower_bound
// of pair p in arr
findLowerBound(s, p);
// Function Call to find upper_bound
// of pair p in arr
findUpperBound(s, p);
return 0;
}
Output:
lower_bound() for {1, 2} is: {1, 2}
upper_bound() for {1, 2} is: {2, 4}
Similar Reads
Implementation of lower_bound() and upper_bound() in List of Pairs in C++ In this article, we will discuss the implementation of the lower_bound() and upper_bound() in a list of pairs. lower_bound(): It returns an iterator pointing to the first element in the range [first, last) which has a value greater than or equals to the given value âvalâ. But in List of Pairs lower_
3 min read
Implementation of lower_bound() and upper_bound() in Vector of Pairs in C++ Here we will discuss the implementation of the lower_bound() and upper_bound() in vector of pairs. lower_bound(): It returns an iterator pointing to the first element in the range [first, last) which has a value greater than or equal to the given value "val". But in Vector of Pairs lower_bound() for
3 min read
Implementing upper_bound() and lower_bound() for Ordered Set in C++ Prerequisites: Ordered Set and GNU C++ PBDS Given an ordered set set and a key K, the task is to find the upper bound and lower bound of the element K in the set in C++. If the element is not present or either of the bounds could not be calculated, then print -1. Ordered set is a policy based data s
3 min read
Implementing upper_bound() and lower_bound() for Ordered Set in C++ Prerequisites: Ordered Set and GNU C++ PBDS Given an ordered set set and a key K, the task is to find the upper bound and lower bound of the element K in the set in C++. If the element is not present or either of the bounds could not be calculated, then print -1. Ordered set is a policy based data s
3 min read
std::upper_bound and std::lower_bound for Vector in C++ STL The std::upper_bound() and std::lower_bound() functions are used for binary search operations STL containers that provide random access. They both are defined inside <algorithm> header file. In this article, we will learn how to use the std::upper_bound and std::lower_bound for vector in C++ S
5 min read
Binary Search functions in C++ STL (binary_search, lower_bound and upper_bound) In C++, STL provide various functions like std::binary_search(), std::lower_bound(), and std::upper_bound() which uses the the binary search algorithm for different purposes. These function will only work on the sorted data.There are the 3 binary search function in C++ STL:Table of Contentbinary_sea
3 min read