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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:19:50+00:00 2026-06-17T19:19:50+00:00

How can I write my own hash and equity operator for an unordered map

  • 0

How can I write my own hash and equity operator for an unordered map so that I can use a char * instead of a std::string as a key?

  • 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-17T19:19:51+00:00Added an answer on June 17, 2026 at 7:19 pm
    class PtrStr
    {
        protected:
            const char *m_pcStr;
            const int m_nSize;
    
        public:
            PtrStr(const char *pcStr, int nSize) : m_pcStr(pcStr), m_nSize(nSize) {}
            ~PtrStr() {};
    
            const char *GetStr() const { return m_pcStr; }
            const int GetSize() const { return m_nSize; }
    };
    
    namespace std
    { 
        namespace tr1
        { 
            template<> struct hash<PtrStr>
            {
                std::size_t operator()(PtrStr const &key) const
                {
                    return MyHashMethod(key);
                }
            };
        }
    
        template<> struct equal_to<PtrStr>
        {
            bool operator()(const PtrStr &keyA, const PtrStr &keyB) const
            {
                return (strcmp(const_cast<PtrStr &>(keyA).GetStr(), const_cast<PtrStr &>(keyB).GetStr()) == 0);
                return (strcmp(keyA.GetStr(), keyB.GetStr()) == 0);
            }
        };
    }
    
    typedef std::tr1::unordered_map<PtrStr, int> unorderedCharMap;
    typedef std::tr1::unordered_map<PtrStr, int>::iterator unorderedCharMapItr;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write my own protocol so that multiple servers can pass data
How to write a getter that can not be deleted? I want to own
Does anyone know where I can find unit tests that will test std::map ?
Does anyone know if you can write your own pages that asdoc will recognize
How can I append a value in a Hash object using a key that
So I know I can write my own HTML-encoding function like this: function getHTMLEncode(t)
I can always start to write my own, but i'd rather not have to
Well im trying to write my own custom control extender but i can't get
Since I'm using Postgresql and can't use LINQ to SQL, I wrote my own
You can write //google.com instead of http://google.com and https://google.com where // is relative to

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.