Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8667371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T17:56:51+00:00 2026-06-12T17:56:51+00:00

I have a pair of iterators returned from a multimap equal_range call. I wish

  • 0

I have a pair of iterators returned from a multimap equal_range call. I wish to use these to create a subset in the form of a vector of pairs. Can this be done elegantly please?

The reason I want it as a vector is so I can more easily extract data based on its index (position in the container)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T17:56:53+00:00Added an answer on June 12, 2026 at 5:56 pm

    Using the iterator range constructor of std::vector:

    auto p = mul_map.equal_range(...);
    std::vector<mul_map_type::value_type> v(p.first, p.second);
    

    For efficiency, it may be worth to only store pointers or iterators in the vector, which can easily be achieved with Boost.Range:

    #include <boost/range/counting_range.hpp>
    
    auto p = mul_map.equal_range(...);
    auto iters = boost::counting_range(p.first, p.second);
    std::vector<mul_map_type::(const_)iterator> v(iters.begin(), iters.end());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have vector< pair<int, int>> myVec (N); I want to have all pairs initialized
I have a std::vector with the element as pair and need to find all
I have a multimap defined by typedef std::pair<int, int> comp_buf_pair; //pair<comp_t, dij> typedef std::pair<int,
I have a multimap defined by typedef std::pair<int, int> au_pair; //vertices typedef std::pair<int, int>
I have a vector< vector< pair<int,int> > > and I want to print all
I have a STL::multimap and I search it with equal_range to return an upper
I have a List<Pair<String, String>> into which I want to copy the data from
I have a std::vector<std::pair<int,double>> , is there a quick way in terms of code
I have the following vector: std::vector< std::pair<std::string,bool > > myvec; How can i browse
Suppose i have the following code: std::vector< std::pair <int, char> > myVec; or std::list<

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.