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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:04:06+00:00 2026-06-11T20:04:06+00:00

I am wondering why does Hashtable avoid using negative hashcode ? int hash =

  • 0

I am wondering why does Hashtable avoid using negative hashcode ?

int hash = key.hashCode();
int index = (hash & 0x7FFFFFFF) % tab.length;

Where (hash & 0x7FFFFFFF) makes the signed bit to be 0 to positive, but why couldn’t we treat the signed 32 bit integer as unsigned ? or even use the modular tricks to make it become positive. For example,

public static long int_mod(int hashcode, int tab_length){
     return (hashcode % tab_length + tab_length) % tab_length;  
} 
  • 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-11T20:04:07+00:00Added an answer on June 11, 2026 at 8:04 pm

    The value has to be between 0 and tab.length - 1 because it is used as an index into an internal array (tab in this case) storing the values (and overflow elements). Therefore, it cannot be negative.

    I assume (hash & 0x7FFFFFFF) % tab.length is used in preference of (hashcode % tab.length + tab.length) % tab.length because it is faster without unduly increasing the chance of collisions, but you would have to find a design document or talk to the original developers to know for sure.

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

Sidebar

Related Questions

I am currently using the VLOOKUP function for excel and I was wondering does
I am using gcc 4.4.2 on linux I am just wondering does gcc automatically
i'm wondering what does this do: std::basic_string<char, std::char_traits<char>, std::allocator<char>>:: basic_string<char, std::char_traits<char>, std::allocator<char>> (&myText, hello
I was wondering does anyone know if its possible to open a wifi and
I am wondering does the size() function returns an internal stored variable (which gives
I'm wondering why does Visual Studio code analysis give a warning with this little
i'm wondering how does the media servers work, do they require large bandwidth if
I was wondering how does Nike website make the change you can see when
I was always wondering how does the login operation performs so quickly when I'm
I am just wondering how does apple approve the iPhone app that communicates via

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.