Last Updated : 28 Sep, 2018
std::equal_rangeis used to find the sub-range within a given range [first, last) that has all the elements equivalent to a given value. It
returns the initial and the final bound of such a sub-range.This function requires the range to be either sorted or partitioned according to some condition such that all the elements for which the condition evaluates to true are to the left of the given value and rest all are to its right. It can be used in two ways as shown below:
Template pair equal_range (ForwardIterator first, ForwardIterator last, const T& val); first: Forward iterator to the first element in the range. last: Forward iterator to the last element in the range. val: Value of the subrange to search for in the range. Return Value: It returns a pair object, whose member pair::first is an iterator to the lower bound of the subrange of equivalent values, and pair::second its upper bound. If there is no element equivalent to val, then both first and second points to the nearest element greater than val, or if val is greater than any other value, then both of them point to last.CPP
// C++ program to demonstrate the use of std::equal_range
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v = { 10, 10, 30, 30, 30, 100, 10,
300, 300, 70, 70, 80 };
// Declaring an iterator to store the
// return value of std::equal_range
std::pair<std::vector<int>::iterator,
std::vector<int>::iterator> ip;
// Sorting the vector v
sort(v.begin(), v.end());
// v becomes 10 10 10 30 30 30 70 70 80 100 300 300
// Using std::equal_range and comparing the elements
// with 30
ip = std::equal_range(v.begin(), v.begin() + 12, 30);
// Displaying the subrange bounds
cout << "30 is present in the sorted vector from index "
<< (ip.first - v.begin()) << " till "
<< (ip.second - v.begin());
return 0;
}
Output:
30 is present in the sorted vector from index 3 till 6Explanation: After sorting the vector v1, we checked for the bounds within which 30 is present, i.e., from index 3 till index 6.
pair equal_range (ForwardIterator first, ForwardIterator last, const T& val, Compare comp); Here, first, last and val are the same as previous case. comp: Binary function that accepts two arguments of the type pointed by ForwardIterator (and of type T), and returns a value convertible to bool. The value returned indicates whether the first argument is considered to go before the second. The function shall not modify any of its arguments. This can either be a function pointer or a function object. Return Value: It returns a pair object, whose member pair::first is an iterator to the lower bound of the subrange of equivalent values, and pair::second its upper bound. If there is no element equivalent to val, then both first and second point to the nearest element greater than val, or if val is greater than any other value, then both of them point to last.CPP
// C++ program to demonstrate the use of std::equal_range
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <functional>
using namespace std;
// Defining the BinaryFunction
bool comp(int a, int b)
{
return (a > b);
}
int main()
{
vector<int> v = { 10, 10, 30, 30, 30, 100, 10,
300, 300, 70, 70, 80 };
// Declaring an iterator to store the
// return value of std::equal_range
std::pair<std::vector<int>::iterator,
std::vector<int>::iterator> ip;
// Sorting the vector v in descending order
sort(v.begin(), v.end(), greater<int>());
// v becomes 300 300 100 80 70 70 30 30 30 10 10 10
// Using std::equal_range and comparing the elements
// with 10
ip = std::equal_range(v.begin(), v.begin() + 12, 10, comp);
// Displaying the subrange bounds
cout << "10 is present in the sorted vector from index "
<< (ip.first - v.begin()) << " till "
<< (ip.second - v.begin());
return 0;
}
Output:
10 is present in the sorted vector from index 9 till 12
Where can it be used ?
// C++ program to demonstrate the use of std::equal_range
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v = { 1, 2, 3, 4, 5, 5, 6, 7 };
// Declaring an iterator to store the
// return value of std::equal_range
std::pair<std::vector<int>::iterator,
std::vector<int>::iterator> ip;
// Using std::equal_range and comparing the elements
// with 5
ip = std::equal_range(v.begin(), v.end(), 5);
// Displaying the subrange bounds
cout << "std::lower_bound should be equal to "
<< (ip.first - v.begin()) << " and std::upper_bound "
<< "should be equal to " << (ip.second - v.begin());
vector<int>::iterator i1, i2;
// Using std::lower_bound
i1 = std::lower_bound(v.begin(), v.end(), 5);
cout << "\nstd::lower_bound is = " << (i1 - v.begin());
// Using std::upper_bound
i2 = std::upper_bound(v.begin(), v.end(), 5);
cout << "\nstd::upper_bound is = " << (i2 - v.begin());
return 0;
}
Output:
std::lower_bound should be equal to 4 and std::upper_bound should be equal to 6 std::lower_bound is = 4 std::upper_bound is = 6
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4