A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://en.cppreference.com/w/cpp/algorithm/../algorithm/../container/multiset/equal_range.html below:

std::multiset<Key,Compare,Allocator>::equal_range - cppreference.com

std::pair<iterator, iterator> equal_range( const Key& key ); (1) (constexpr since C++26) std::pair<const_iterator, const_iterator>
    equal_range( const Key& key ) const;
(2) (constexpr since C++26) template< class K >
std::pair<iterator, iterator> equal_range( const K& x );
(3) (since C++14)
(constexpr since C++26) template< class K >

std::pair<const_iterator, const_iterator>

    equal_range( const K& x ) const;
(4) (since C++14)
(constexpr since C++26)

Returns a range containing all elements with the given key in the container. The range is defined by two iterators, one pointing to the first element that is not less than the given key and another pointing to the first element greater than the given key.

Alternatively, the first iterator may be obtained with lower_bound(), and the second with upper_bound().

1,2) Compares the keys to key.

3,4) Compares the keys to the value x.

This overload participates in overload resolution only if

Compare

is

transparent

. It allows calling this function without constructing an instance of

Key

.

[edit] Parameters key - key value to compare the elements to x - alternative value that can be compared to Key [edit] Return value

std::pair containing a pair of iterators defining the wanted range:

Since emplace and unhinted insert always insert at the upper bound, the order of equivalent elements in the equal range is the order of insertion unless hinted insert or emplace_hint was used to insert an element at a different position.

(since C++11) [edit] Complexity

Logarithmic in the size of the container.

Notes [edit] Example
#include <iostream>
#include <set>
 
template<typename I>
void print_equal_range(I first, I lb, I ub, I last)
{
    for (I i{first}; i != lb; ++i)
        std::cout << *i << ' ';
    std::cout << "[ ";
 
    for (I i{lb}; i != ub; ++i)
        std::cout << *i << ' ';
    std::cout << ") ";
 
    for (I i{ub}; i != last; ++i)
        std::cout << *i << ' ';
    std::cout << '\n';
}
 
int main()
{
    std::multiset<int> c{4, 3, 2, 1, 3, 3};
    std::cout << "c = ";
    print_equal_range(begin(c), begin(c), end(c), end(c));
    for (int key{}; key != 6; ++key)
    {
        std::cout << "key = " << key << "; equal range = ";
        const auto [lb, ub] = c.equal_range(key);
        print_equal_range(begin(c), lb, ub, end(c));
    }
}

Output:

c = [ 1 2 3 3 3 4 )
key = 0; equal range = [ ) 1 2 3 3 3 4
key = 1; equal range = [ 1 ) 2 3 3 3 4
key = 2; equal range = 1 [ 2 ) 3 3 3 4
key = 3; equal range = 1 2 [ 3 3 3 ) 4
key = 4; equal range = 1 2 3 3 3 [ 4 )
key = 5; equal range = 1 2 3 3 3 4 [ )
[edit] See also finds element with specific key
(public member function) [edit] checks if the container contains element with specific key
(public member function) [edit] returns the number of elements matching specific key
(public member function) [edit] returns an iterator to the first element greater than the given key
(public member function) [edit] returns an iterator to the first element not less than the given key
(public member function) [edit] returns range of elements matching a specific key
(function template) [edit]

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