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 7520387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T02:03:43+00:00 2026-05-30T02:03:43+00:00

I have an std::map and I want to search for a key using a

  • 0

I have an std::map and I want to search for a key using a substring. For example, I have the following code:

#include <iostream>
#include <map>
#include <string>
using namespace std;

typedef std::map<std::string, std::string> TStrStrMap;
typedef std::pair<std::string, std::string> TStrStrPair;

int main(int argc, char *argv[])
{
    TStrStrMap tMap;

    tMap.insert(TStrStrPair("John", "AA"));
    tMap.insert(TStrStrPair("Mary", "BBB"));
    tMap.insert(TStrStrPair("Mother", "A"));
    tMap.insert(TStrStrPair("Marlon", "C"));

    return 0;
}

Now, I want to search for the position that holds the substring “Marl” and not “Marlon”, if “Marla” is stored in the map. I want to find something that starts with “Marl”. I need to find at most one position. Is this possible? If so, how?

I don’t want to use any Boost libraries!

  • 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-05-30T02:03:44+00:00Added an answer on May 30, 2026 at 2:03 am

    You can’t efficiently search for substring, but you can for prefix:

    #include <iostream>
    #include <map>
    #include <string>
    #include <algorithm>
    using namespace std;
    
    typedef map<string, string> TStrStrMap;
    typedef pair<string, string> TStrStrPair;
    
    TStrStrMap::const_iterator FindPrefix(const TStrStrMap& map, const string& search_for) {
        TStrStrMap::const_iterator i = map.lower_bound(search_for);
        if (i != map.end()) {
            const string& key = i->first;
            if (key.compare(0, search_for.size(), search_for) == 0) // Really a prefix?
                return i;
        }
        return map.end();
    }
    
    void Test(const TStrStrMap& map, const string& search_for) {
        cout << search_for;
        auto i = FindPrefix(map, search_for);
        if (i != map.end())
            cout << '\t' << i->first << ", " << i->second;
        cout << endl;
    }
    
    int main(int argc, char *argv[])
    {
        TStrStrMap tMap;
    
        tMap.insert(TStrStrPair("John", "AA"));
        tMap.insert(TStrStrPair("Mary", "BBB"));
        tMap.insert(TStrStrPair("Mother", "A"));
        tMap.insert(TStrStrPair("Marlon", "C"));
    
        Test(tMap, "Marl");
        Test(tMap, "Mo");
        Test(tMap, "ther");
        Test(tMap, "Mad");
        Test(tMap, "Mom");
        Test(tMap, "Perr");
        Test(tMap, "Jo");
    
        return 0;
    }
    

    This prints:

    Marl    Marlon, C
    Mo      Mother, A
    ther
    Mad
    Mom
    Perr
    Jo      John, AA
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have next code: #include <iostream> #include <algorithm> #include <map> #include <iterator> //namespace std
i have a std::map and i am using iterator to find a certain key,value
I have a std::map< std::string, std::string> cont; I want to see cont[ some_key ]
So I want to create a simple map std::map<T1, std::string> and I have a
If I have a std::vector or std::map variable, and I want to see the
let's say I have std::map< std::string, std::string > m_someMap as a private member variable
I have a std::map that I'm using to store values for x and y
I have a map defined like this std::map<some_key_type, std::string::iterator> mIteratorMap; And a huge string
std::map<any, string> is not working so I wonder if there's another approach to have
Supposing to have something like this: #include <map> int main(){ std::map<int,int> m; m[1] =

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.