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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:46:18+00:00 2026-05-24T21:46:18+00:00

I need to specialize the hash function for unordered_map so I can use int

  • 0

I need to specialize the hash function for unordered_map so I can use int arrays as keys. The array values are usually 0 or 1, e.g. int array = {0, 1, 0, 1}, but technically not bounded.

Can someone recommend a good hash function in this case? Alternatively, I can always convert the int array into a string and avoid specialization. But I am concerned about performance since I may have several million of these arrays.

  • 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-24T21:46:18+00:00Added an answer on May 24, 2026 at 9:46 pm

    C++ TR1 contains a hash template function.

    If you don’t have that yet, you can use Boost Hash.

    Idea for a handy helper:

    #include <boost/functional/hash.hpp>
    
    template <typename T, int N>
        static std::size_t hasharray(const T (&arr)[N])
    {
         return boost::hash_range(arr, arr+N);
    }
    

    This would be (roughly?) equivalent to

     size_t seed = 0;
     for (const T* it=arr; it!=(arr+N); ++it)
         boost::hash_combine(seed, *it);
     return seed;
    

    Don’t forget to implement proper equality comparison operations if you’re using this hash for lookup

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I write class templates, and need to fully-specialize members of those classes, Doxygen
Background We need to develop a specialised CMS (internal use only) to support a
I have a list of values that i need to check against a constant
I have a need for specialize collection of custom types in my Domain Model.
I've got a trait class which I need to specialize (and partial-specialize) many times.
I need to create specialized HTTP server, for this I plan to use epoll
I need to serialize a huge amount of data (around 2gigs) of small objects
I need to serialize/de-serialize some objects into/from string and transfer them as just opaque
I need to serialize a .NET DateTime value in a protocol buffers message. My
I have a business class which I need to serialize to xml. It has

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.