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

  • SEARCH
  • Home
  • 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 8821563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:53:12+00:00 2026-06-14T05:53:12+00:00

Say I have more than one key with the same value in a map.

  • 0

Say I have more than one key with the same value in a map. Then in that case how do I retrieve all keys that matches a query.

Or, Is there any possibility to tell find operation to search after a specific value.
I am using an std::map, C++.

  • 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-14T05:53:13+00:00Added an answer on June 14, 2026 at 5:53 am

    The associative containers probably won’t help you too much because for std::map<K, V> the key happens to be unique and chances that your chosen query matches the ordering relation you used may not be too high. If the order matches, you can use the std::map<K, V> members lower_bound() and upper_bound(). For std::multimap<K, V> you can also use equal_range().

    In general, i.e., if you query isn’t really related to the order, you can use std::copy_if() to get a sequence of objects matching a predicate:

    Other other;
    // ...
    std::vector<Other::value_type> matches;
    std::copy_if(other.begin(), other.end(), 
                 std::back_inserter(matches), predicate);
    

    When copying the elements is too expensive, you should probably consider using std:find_if() instead:

    for (auto it(other.begin());
        other.end() != (it = std::find_if(it, other.end(), predicate));
        ++it) {
       // do something with it
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say we have a field that can be in more than one type,
Say I have a result set that can contain one or more values, but
Let's say I have 3 or more peers connected to the same WiFi Access
Say I have an object var my_obj = new Object(); my_obj['key'] = value; Is
I have a program that will store many instances of one class, let's say
Say I have a SSI script that uses exec, or a PHP script that
I have a parent category that holds all Cars names, denoted by parent_name in
i have a table that have one column (AbsoluteUrl NVARCHAR(2048)) and i want to
Lets say we have this code that runs in the constructor: Dim initVectorBytes As
The PHP array type is actually more akin to an an ordered map than

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.