On this page
std::ranges::equal_range
Defined in header <algorithm> |
||
---|---|---|
Call signature | ||
|
(1) | (since C++20) |
|
(2) | (since C++20) |
value
in the range [
first
,
last
)
.
The range [
first
,
last
)
must be at least partially ordered with respect to value
, i.e. it must satisfy all of the following requirements:
- partitioned with respect to
element < value
orcomp(element, value)
(that is, all elements for which the expression istrue
precedes all elements for which the expression isfalse
). - partitioned with respect to
!(value < element)
or!comp(value, element)
. - for all elements, if
element < value
orcomp(element, value)
istrue
then!(value < element)
or!comp(value, element)
is alsotrue
.
A fully-sorted range meets these criteria.
The returned view is constructed from two iterators, one pointing to the first element that is not less than value
and another pointing to the first element greater than value
. The first iterator may be alternatively obtained with std::ranges::lower_bound()
, the second - with std::ranges::upper_bound()
.
r
as the source range, as if using the range ranges::begin(r)
as first
and ranges::end(r)
as last
.
The function-like entities described on this page are niebloids, that is:
- Explicit template argument lists cannot be specified when calling any of them.
- None of them are visible to argument-dependent lookup.
- When any of them are found by normal unqualified lookup as the name to the left of the function-call operator, argument-dependent lookup is inhibited.
In practice, they may be implemented as function objects, or with special compiler extensions.
Parameters
first, last | - | the range of elements to examine |
r | - | the range of the elements to examine |
value | - | value to compare the elements to |
comp | - | if the first argument is less than (i.e. is ordered before) the second |
proj | - | projection to apply to the elements |
Return value
std::ranges::subrange
containing a pair of iterators defining the wanted range, the first pointing to the first element that is not less than value
and the second pointing to the first element greater than value
.
If there are no elements not less than value
, the last iterator (iterator that is equal to last
or ranges::end(r)
) is returned as the first element. Similarly if there are no elements greater than value
, the last iterator is returned as the second element.
Complexity
The number of comparisons performed is logarithmic in the distance between first
and last
(at most 2 * log2(last - first) + O(1) comparisons). However, for an iterator that does not model random_access_iterator
, the number of iterator increments is linear.
Possible implementation
|
Example
#include <algorithm>
#include <compare>
#include <iostream>
#include <vector>
struct S
{
int number {};
char name {};
// note: name is ignored by these comparison operators
friend bool operator== (const S s1, const S s2) { return s1.number == s2.number; }
friend auto operator<=>(const S s1, const S s2) { return s1.number <=> s2.number; }
friend std::ostream& operator<<(std::ostream& os, S o)
{
return os << '{' << o.number << ", '" << o.name << "'}";
}
};
void println(auto rem, auto const& v)
{
for (std::cout << rem; auto const& e : v)
std::cout << e << ' ';
std::cout << '\n';
}
int main()
{
// note: not ordered, only partitioned w.r.t. S defined below
std::vector<S> vec
{
{1,'A'}, {2,'B'}, {2,'C'}, {2,'D'}, {4, 'D'}, {4,'G'}, {3,'F'}
};
const S value {2, '?'};
namespace ranges = std::ranges;
auto a = ranges::equal_range(vec, value);
println("1. ", a);
auto b = ranges::equal_range(vec.begin(), vec.end(), value);
println("2. ", b);
auto c = ranges::equal_range(vec, 'D', ranges::less {}, &S::name);
println("3. ", c);
auto d = ranges::equal_range(vec.begin(), vec.end(), 'D', ranges::less {}, &S::name);
println("4. ", d);
}
Output:
1. {2, 'B'} {2, 'C'} {2, 'D'}
2. {2, 'B'} {2, 'C'} {2, 'D'}
3. {2, 'D'} {4, 'D'}
4. {2, 'D'} {4, 'D'}
See also
(C++20)
|
returns an iterator to the first element not less than the given value (niebloid) |
(C++20)
|
returns an iterator to the first element greater than a certain value (niebloid) |
(C++20)
|
determines if an element exists in a partially-ordered range (niebloid) |
(C++20)
|
divides a range of elements into two groups (niebloid) |
(C++20)
|
determines if two sets of elements are the same (niebloid) |
returns range of elements matching a specific key (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/algorithm/ranges/equal_range